diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2012-10-24 05:51:38 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2012-10-24 05:51:38 +0000 |
| commit | b2775f851a287e2bcb8ff1190eebd39df4a6a703 (patch) | |
| tree | c86c0f0d9d5693b92e09292f03bcdd0823c57068 /cpp/src/qpid/sys/windows/WinSocket.cpp | |
| parent | e9af3d4c50c322615b9486fdccde807a621648c7 (diff) | |
| download | qpid-python-b2775f851a287e2bcb8ff1190eebd39df4a6a703.tar.gz | |
QPID-4272: Large amounts of code are duplicated between the SSL and TCP transports
Add the security related functions to the Socket/Asynch interfaces
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1401560 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/windows/WinSocket.cpp')
| -rw-r--r-- | cpp/src/qpid/sys/windows/WinSocket.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/src/qpid/sys/windows/WinSocket.cpp b/cpp/src/qpid/sys/windows/WinSocket.cpp index c1ac31de76..cb321d1ffb 100644 --- a/cpp/src/qpid/sys/windows/WinSocket.cpp +++ b/cpp/src/qpid/sys/windows/WinSocket.cpp @@ -258,4 +258,14 @@ void WinSocket::setTcpNoDelay() const } } +int WinSocket::getKeyLen() const +{ + return 0; +} + +std::string WinSocket::getClientAuthId() const +{ + return std::string(); +} + }} // namespace qpid::sys |
