diff options
| author | Justin Ross <jross@apache.org> | 2013-06-25 20:07:42 +0000 |
|---|---|---|
| committer | Justin Ross <jross@apache.org> | 2013-06-25 20:07:42 +0000 |
| commit | d4081c8043e479f6a2dd1ce1ff7a3e7b37795c53 (patch) | |
| tree | 9923eb3ab774ebd7ac8655e9fa4e1a0953a21ed2 /qpid/python | |
| parent | daa0fda2abca03a64f8110e685b6f954571db155 (diff) | |
| download | qpid-python-d4081c8043e479f6a2dd1ce1ff7a3e7b37795c53.tar.gz | |
NO-JIRA: Corrections for the python API doc; a patch from Ernie Allen
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1496623 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qpid/messaging/endpoints.py | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/qpid/python/qpid/messaging/endpoints.py b/qpid/python/qpid/messaging/endpoints.py index 7621dceb3d..3453971a77 100644 --- a/qpid/python/qpid/messaging/endpoints.py +++ b/qpid/python/qpid/messaging/endpoints.py @@ -89,24 +89,28 @@ class Connection(Endpoint): @type password: str @param password: the password for authentication (overriden by url) + * - sasl_min_ssf: the minimum acceptable security strength factor + * - sasl_max_ssf: the minimum acceptable security strength factor + * - sasl_service: the service name if needed by the SASL mechanism in use + @type sasl_mechanisms: str @param sasl_mechanisms: space separated list of permitted sasl mechanisms @type sasl_service: str - @param sasl_service: ??? - @type sasl_min_ssf: ??? - @param sasl_min_ssf: ??? - @type sasl_max_ssf: ??? - @param sasl_max_ssf: ??? + @param sasl_service: the service name if needed by the SASL mechanism in use + @type sasl_min_ssf: int + @param sasl_min_ssf: the minimum acceptable security strength factor + @type sasl_max_ssf: int + @param sasl_max_ssf: the minimum acceptable security strength factor @type reconnect: bool @param reconnect: enable/disable automatic reconnect @type reconnect_timeout: float @param reconnect_timeout: total time to attempt reconnect - @type reconnect_internal_min: float - @param reconnect_internal_min: minimum interval between reconnect attempts - @type reconnect_internal_max: float - @param reconnect_internal_max: maximum interval between reconnect attempts - @type reconnect_internal: float + @type reconnect_interval_min: float + @param reconnect_interval_min: minimum interval between reconnect attempts + @type reconnect_interval_max: float + @param reconnect_interval_max: maximum interval between reconnect attempts + @type reconnect_interval: float @param reconnect_interval: set both min and max reconnect intervals @type reconnect_limit: int @param reconnect_limit: limit the total number of reconnect attempts |
