diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-02-24 13:21:59 +0000 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-02-24 13:21:59 +0000 |
commit | a20f3891f03a8509fd5f23025fb945995bcdde18 (patch) | |
tree | 0b9a9aee521fe0d2ad2e20565065e0e2fce7e51b | |
parent | ec88785a50e045fced5ed7f86efd0c6e91fc7c61 (diff) | |
download | pykolab-a20f3891f03a8509fd5f23025fb945995bcdde18.tar.gz |
Do not solely support syncrepl (this is a development thing)
-rw-r--r-- | pykolab/constants.py.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pykolab/constants.py.in b/pykolab/constants.py.in index 68fb9b2..85f5c38 100644 --- a/pykolab/constants.py.in +++ b/pykolab/constants.py.in @@ -106,5 +106,18 @@ SUPPORTED_LDAP_CONTROLS = { 'desc': 'Virtual List View Control', 'oid': '2.16.840.1.113730.3.4.9', 'func': '_vlv_search' + }, + 3: { + 'desc': 'OpenLDAP Syncrepl (RFC4533)', + 'oid': '1.3.6.1.4.1.4203.1.9.1.1', + 'func': '_sync_repl' } } + +#SUPPORTED_LDAP_CONTROLS = { +# 0: { +# 'desc': 'OpenLDAP Syncrepl (RFC4533)', +# 'oid': '1.3.6.1.4.1.4203.1.9.1.1', +# 'func': '_sync_repl' +# } +# } |