diff options
author | Andrey Hristov <andrey@php.net> | 2014-01-28 15:23:54 +0200 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2014-01-28 15:23:54 +0200 |
commit | eafe070f86eb53271e7c95572f371d9abcadf252 (patch) | |
tree | 0d7d68b25b023fc7ff7c5ed6faec3ed9308daf0b /ext/ldap/php_ldap.h | |
parent | d3faae03ec6271873a25dd7e329cc2bdc6af7324 (diff) | |
parent | e9b4bca5a00d475c4176ce24a5203d42607642e8 (diff) | |
download | php-git-eafe070f86eb53271e7c95572f371d9abcadf252.tar.gz |
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Diffstat (limited to 'ext/ldap/php_ldap.h')
-rw-r--r-- | ext/ldap/php_ldap.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/ldap/php_ldap.h b/ext/ldap/php_ldap.h index e10c8a7e61..bd3731819d 100644 --- a/ext/ldap/php_ldap.h +++ b/ext/ldap/php_ldap.h @@ -50,4 +50,14 @@ ZEND_END_MODULE_GLOBALS(ldap) #define phpext_ldap_ptr ldap_module_ptr +/* Constants for ldap_modify_batch */ +#define LDAP_MODIFY_BATCH_ADD 0x01 +#define LDAP_MODIFY_BATCH_REMOVE 0x02 +#define LDAP_MODIFY_BATCH_REMOVE_ALL 0x12 +#define LDAP_MODIFY_BATCH_REPLACE 0x03 + +#define LDAP_MODIFY_BATCH_ATTRIB "attrib" +#define LDAP_MODIFY_BATCH_MODTYPE "modtype" +#define LDAP_MODIFY_BATCH_VALUES "values" + #endif /* PHP_LDAP_H */ |