summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJustin Ross <jross@apache.org>2013-06-25 20:07:42 +0000
committerJustin Ross <jross@apache.org>2013-06-25 20:07:42 +0000
commit15c784cdbdd275ffde2c28c9feac08843ec785be (patch)
tree2e80c55e910ba9f6bf46021cdd0b4f7c814a2d18 /python
parent3b118af6f5f72060ddb486ce875c3b7f2a928a2a (diff)
downloadqpid-python-15c784cdbdd275ffde2c28c9feac08843ec785be.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/qpid@1496623 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
-rw-r--r--python/qpid/messaging/endpoints.py24
1 files changed, 14 insertions, 10 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py
index 7621dceb3d..3453971a77 100644
--- a/python/qpid/messaging/endpoints.py
+++ b/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