Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: net/socket/socks_client_socket.cc

Issue 149242: For linux correctly implementing GetPeerName() to point to TCPClientSocket::G... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/socks_client_socket.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/socks_client_socket.cc
===================================================================
--- net/socket/socks_client_socket.cc (revision 19932)
+++ net/socket/socks_client_socket.cc (working copy)
@@ -8,7 +8,7 @@
#include "build/build_config.h"
#if defined(OS_WIN)
#include <ws2tcpip.h>
-#else
+#elif defined(OS_POSIX)
#include <netdb.h>
#endif
#include "base/compiler_specific.h"
@@ -375,12 +375,9 @@
}
#if defined(OS_LINUX)
-// Identical to posix system call getpeername().
-// Needed by ssl_client_socket_nss.
-int SOCKSClientSocket::GetPeerName(struct sockaddr *name, socklen_t *namelen) {
- // Default implementation just permits some unit tests to link.
- NOTREACHED();
- return ERR_UNEXPECTED;
+int SOCKSClientSocket::GetPeerName(struct sockaddr* name,
+ socklen_t* namelen) {
+ return transport_->GetPeerName(name, namelen);
}
#endif
« no previous file with comments | « net/socket/socks_client_socket.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698