summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/cluster/ConnectionCodec.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2009-11-09 15:30:18 +0000
committerGordon Sim <gsim@apache.org>2009-11-09 15:30:18 +0000
commit58efa10f3ed794dac024a1995e871a1368faeddc (patch)
tree7a96ce8642acfdc19546512fadfc8783fbc252d3 /cpp/src/qpid/cluster/ConnectionCodec.h
parentbb32d235be89547bb7e8621ce56c66e4dabdd43a (diff)
downloadqpid-python-58efa10f3ed794dac024a1995e871a1368faeddc.tar.gz
QPID-1899: Applied patch from Ken Giusti to tie in SASL enctryption to the handling of the --require-encrypted option
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@834108 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/ConnectionCodec.h')
-rw-r--r--cpp/src/qpid/cluster/ConnectionCodec.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/cpp/src/qpid/cluster/ConnectionCodec.h b/cpp/src/qpid/cluster/ConnectionCodec.h
index 4ff738b603..74cb3c507d 100644
--- a/cpp/src/qpid/cluster/ConnectionCodec.h
+++ b/cpp/src/qpid/cluster/ConnectionCodec.h
@@ -52,12 +52,15 @@ class ConnectionCodec : public sys::ConnectionCodec {
Cluster& cluster;
Factory(boost::shared_ptr<sys::ConnectionCodec::Factory> f, Cluster& c)
: next(f), cluster(c) {}
- sys::ConnectionCodec* create(framing::ProtocolVersion, sys::OutputControl&, const std::string& id);
- sys::ConnectionCodec* create(sys::OutputControl&, const std::string& id);
+ sys::ConnectionCodec* create(framing::ProtocolVersion, sys::OutputControl&, const std::string& id,
+ unsigned int conn_ssf);
+ sys::ConnectionCodec* create(sys::OutputControl&, const std::string& id,
+ unsigned int conn_ssf);
};
ConnectionCodec(const framing::ProtocolVersion&, sys::OutputControl& out,
- const std::string& logId, Cluster& c, bool catchUp, bool isLink);
+ const std::string& logId, Cluster& c, bool catchUp, bool isLink,
+ unsigned int ssf);
~ConnectionCodec();
// ConnectionCodec functions.