diff options
author | Douglas Huff <mith@jrbobdobbs.org> | 2012-07-07 09:11:54 -0500 |
---|---|---|
committer | Douglas Huff <mith@jrbobdobbs.org> | 2012-07-07 09:11:54 -0500 |
commit | b19811d5f4140281f99f4eea5e69d9d670f4d549 (patch) | |
tree | b234bf2b49cbbfaa43ac5f608295fe48f1a47484 | |
parent | 249856d557d05aaf293aba80eab95c3dd312dd26 (diff) |
Fix OBO in socks5 auth proposal. This fixes compatibility with openssh's socks5 proxy and tor's .2.3.x branch.
-rw-r--r-- | src/netbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index aa767cd3eb..0a54fdf46c 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -224,7 +224,7 @@ bool static Socks5(string strDest, int port, SOCKET& hSocket) } char pszSocks5Init[] = "\5\1\0"; char *pszSocks5 = pszSocks5Init; - ssize_t nSize = sizeof(pszSocks5Init); + ssize_t nSize = sizeof(pszSocks5Init) - 1; ssize_t ret = send(hSocket, pszSocks5, nSize, MSG_NOSIGNAL); if (ret != nSize) |