From ccd271e851f2bc2b52a7c8daaa54a06551d63dc0 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Tue, 6 Jan 2009 19:50:59 +0000 Subject: * 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/qpid@732082 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/.valgrind.supp | 7 +++++++ cpp/src/tests/ConnectionOptions.h | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'cpp/src/tests') diff --git a/cpp/src/tests/.valgrind.supp b/cpp/src/tests/.valgrind.supp index 7ac34fde5d..7ae2bd9845 100644 --- a/cpp/src/tests/.valgrind.supp +++ b/cpp/src/tests/.valgrind.supp @@ -201,3 +201,10 @@ fun:_ZN5boost6detail3tss3setEPv } +{ + Shows up on RHEL5: believed benign + Memcheck:Cond + fun:__strcpy_chk + fun:_sasl_load_plugins + fun:sasl_client_init +} diff --git a/cpp/src/tests/ConnectionOptions.h b/cpp/src/tests/ConnectionOptions.h index 0130842668..30fe5ad9b1 100644 --- a/cpp/src/tests/ConnectionOptions.h +++ b/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"); } }; -- cgit v1.2.1