summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/ConnectionOptions.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2009-01-06 19:50:59 +0000
committerGordon Sim <gsim@apache.org>2009-01-06 19:50:59 +0000
commit1fc265f9181e1b27491e517f95b327096e55f1fc (patch)
treef7a2774f4fbe887f537970438f5bae0bd78f56bd /qpid/cpp/src/tests/ConnectionOptions.h
parent51409ed32a294a4691e775be15b6a3cfe9690a7b (diff)
downloadqpid-python-1fc265f9181e1b27491e517f95b327096e55f1fc.tar.gz
* Cyrus SASL intgeration for c++ client
* SASL security layer support for c++ client and broker git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@732082 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/ConnectionOptions.h')
-rw-r--r--qpid/cpp/src/tests/ConnectionOptions.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ConnectionOptions.h b/qpid/cpp/src/tests/ConnectionOptions.h
index 0130842668..30fe5ad9b1 100644
--- a/qpid/cpp/src/tests/ConnectionOptions.h
+++ b/qpid/cpp/src/tests/ConnectionOptions.h
@@ -47,7 +47,10 @@ struct ConnectionOptions : public qpid::Options,
("max-frame-size", optValue(maxFrameSize, "N"), "the maximum frame size to request.")
("bounds-multiplier", optValue(bounds, "N"),
"bound size of write queue (as a multiple of the max frame size).")
- ("tcp-nodelay", optValue(tcpNoDelay), "Turn on tcp-nodelay");
+ ("tcp-nodelay", optValue(tcpNoDelay), "Turn on tcp-nodelay")
+ ("service", optValue(service, "SERVICE-NAME"), "SASL service name.")
+ ("min-ssf", optValue(minSsf, "N"), "Minimum acceptable strength for SASL security layer")
+ ("max-ssf", optValue(maxSsf, "N"), "Maximum acceptable strength for SASL security layer");
}
};