Skip to content

Commit

Permalink
added missing docs for SASL bind convenience LDAPObject methods
Browse files Browse the repository at this point in the history
  • Loading branch information
stroeder committed Sep 4, 2017
1 parent f6ab8c0 commit a5ff993
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions Doc/ldap.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. % $Id: ldap.rst,v 1.39 2017/08/16 12:17:18 stroeder Exp $
.. % $Id: ldap.rst,v 1.40 2017/09/04 15:02:29 stroeder Exp $
********************************************
:py:mod:`ldap` LDAP library interface module
Expand Down Expand Up @@ -678,11 +678,26 @@ and wait for and return with the server's result, or with
be :py:const:`AUTH_SIMPLE`.


.. py:method:: LDAPObject.sasl_interactive_bind_s(who, auth) -> None
.. py:method:: LDAPObject.sasl_interactive_bind_s(who, auth[, serverctrls=None [, clientctrls=None [, sasl_flags=ldap.SASL_QUIET]]]) -> None
This call is used to bind to the directory with a SASL bind request.


.. py:method:: LDAPObject.sasl_non_interactive_bind_s(who, auth[, serverctrls=None [, clientctrls=None [, sasl_flags=ldap.SASL_QUIET [, authz_id='']]]]) -> None
This call is used to bind to the directory with a SASL bind request.


.. py:method:: LDAPObject.sasl_external_bind_s([serverctrls=None [, clientctrls=None [, sasl_flags=ldap.SASL_QUIET [, authz_id='']]]]) -> None
This call is used to bind to the directory with a SASL bind request with mechanism EXTERNAL.


.. py:method:: LDAPObject.sasl_gssapi_bind_s([serverctrls=None [, clientctrls=None [, sasl_flags=ldap.SASL_QUIET [, authz_id='']]]]) -> None
This call is used to bind to the directory with a SASL bind request with mechanism GSSAPI.


.. py:method:: LDAPObject.cancel( cancelid, [, serverctrls=None [, clientctrls=None]]) -> None
Send cancels extended operation for an LDAP operation specified by *cancelid*.
Expand Down

0 comments on commit a5ff993

Please sign in to comment.