aboutsummaryrefslogtreecommitdiff
path: root/src/trunnel/socks5.trunnel
diff options
context:
space:
mode:
authorrl1987 <rl1987@sdf.lonestar.org>2018-06-26 19:31:26 +0300
committerNick Mathewson <nickm@torproject.org>2018-07-12 11:41:44 -0400
commitf27dc41627517ebec3feae6ca00eee544d9dcd59 (patch)
tree1cec7e5429db3a9edb648dc245a8735338a4bffb /src/trunnel/socks5.trunnel
parent2f284d3325f60ad4e4744504588ee62dd62779e9 (diff)
downloadtor-f27dc41627517ebec3feae6ca00eee544d9dcd59.tar.gz
tor-f27dc41627517ebec3feae6ca00eee544d9dcd59.zip
Remove prop229 stuff from socks5.trunnel
Diffstat (limited to 'src/trunnel/socks5.trunnel')
-rw-r--r--src/trunnel/socks5.trunnel22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/trunnel/socks5.trunnel b/src/trunnel/socks5.trunnel
index d70ad639e2..b86ec03b9d 100644
--- a/src/trunnel/socks5.trunnel
+++ b/src/trunnel/socks5.trunnel
@@ -92,25 +92,3 @@ struct socks4_server_reply {
u32 addr;
}
-// And here's the extended stuff from proposal 229
-
-struct tor_socksauth_keyval {
- u16 keylen;
- char key[keylen];
- u16 vallen;
- char val[vallen];
-}
-
-struct tor_extended_socks_auth_request {
- u8 version IN [1];
- u16 npairs;
- struct tor_socksauth_keyval pairs[npairs];
-}
-
-struct tor_extended_socks_auth_response {
- u8 version IN [1];
- u8 status;
- u16 npairs;
- struct tor_socksauth_keyval pairs[npairs];
-}
-