diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2010-01-21 06:14:00 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2010-01-21 06:14:00 +0000 |
| commit | 56c8e15171dae96958cd9106e2e05abbf02739fc (patch) | |
| tree | 0f548c75148764f84b9b71953ec9d9d9107d69bf /cpp/src/qpid/client/RdmaConnector.cpp | |
| parent | 54e20edd9e6b6930b73023fc7fe28e2bfdfb004f (diff) | |
| download | qpid-python-56c8e15171dae96958cd9106e2e05abbf02739fc.tar.gz | |
Made the getSSF() member functions of Connectors private as they can't be used from outside
the connector anyway except via the virtual in the parent class.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@901546 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/RdmaConnector.cpp')
| -rw-r--r-- | cpp/src/qpid/client/RdmaConnector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/RdmaConnector.cpp b/cpp/src/qpid/client/RdmaConnector.cpp index 77169db3a6..ea3566dacb 100644 --- a/cpp/src/qpid/client/RdmaConnector.cpp +++ b/cpp/src/qpid/client/RdmaConnector.cpp @@ -113,6 +113,7 @@ using boost::str; framing::OutputHandler* getOutputHandler(); const std::string& getIdentifier() const; void activateSecurityLayer(std::auto_ptr<qpid::sys::SecurityLayer>); + unsigned int getSSF() { return 0; } size_t decode(const char* buffer, size_t size); size_t encode(const char* buffer, size_t size); @@ -122,7 +123,6 @@ public: RdmaConnector(framing::ProtocolVersion pVersion, const ConnectionSettings&, ConnectionImpl*); - unsigned int getSSF() { return 0; } }; // Static constructor which registers connector here |
