summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/slapi-plugin.h
diff options
context:
space:
mode:
authorNathan Kinder <nkinder@redhat.com>2008-09-24 21:21:52 +0000
committerNathan Kinder <nkinder@redhat.com>2008-09-24 21:21:52 +0000
commit7ebdd01f304ad5e6607e3dec98b5a3fd381fb7d8 (patch)
treebbe178c6bb6a43da48401aeba4ea6c4395d5233d /ldap/servers/slapd/slapi-plugin.h
parentfb3e6ac2f5d60d6184388c482cc4117b50955c99 (diff)
downloadds-7ebdd01f304ad5e6607e3dec98b5a3fd381fb7d8.tar.gz
ds-7ebdd01f304ad5e6607e3dec98b5a3fd381fb7d8.tar.xz
ds-7ebdd01f304ad5e6607e3dec98b5a3fd381fb7d8.zip
Resolves: 462920
Summary: Make DNA plug-in auto-extended exhausted ranges.
Diffstat (limited to 'ldap/servers/slapd/slapi-plugin.h')
-rw-r--r--ldap/servers/slapd/slapi-plugin.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h
index 396150a5..359e957e 100644
--- a/ldap/servers/slapd/slapi-plugin.h
+++ b/ldap/servers/slapd/slapi-plugin.h
@@ -256,6 +256,8 @@ int slapi_entry_attr_get_int(const Slapi_Entry* e, const char *type);
unsigned int slapi_entry_attr_get_uint(const Slapi_Entry* e, const char *type);
long slapi_entry_attr_get_long( const Slapi_Entry* e, const char *type);
unsigned long slapi_entry_attr_get_ulong( const Slapi_Entry* e, const char *type);
+long long slapi_entry_attr_get_longlong( const Slapi_Entry* e, const char *type);
+unsigned long long slapi_entry_attr_get_ulonglong( const Slapi_Entry* e, const char *type);
PRBool slapi_entry_attr_get_bool( const Slapi_Entry* e, const char *type);
void slapi_entry_attr_set_charptr(Slapi_Entry* e, const char *type, const char *value);
void slapi_entry_attr_set_int( Slapi_Entry* e, const char *type, int l);
@@ -459,6 +461,8 @@ int slapi_value_get_int(const Slapi_Value *value);
unsigned int slapi_value_get_uint(const Slapi_Value *value);
long slapi_value_get_long(const Slapi_Value *value);
unsigned long slapi_value_get_ulong(const Slapi_Value *value);
+long long slapi_value_get_longlong(const Slapi_Value *value);
+unsigned long long slapi_value_get_ulonglong(const Slapi_Value *value);
size_t slapi_value_get_length(const Slapi_Value *value);
int slapi_value_compare(const Slapi_Attr *a,const Slapi_Value *v1,const Slapi_Value *v2);