diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-05-16 14:47:46 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-12 11:40:49 -0400 |
commit | 75106a26b4ef8167406cd4d457c24e4aa6618118 (patch) | |
tree | 89f5761b92545880a63af7ef6b4b8506ea95e801 /src/trunnel/socks5.trunnel | |
parent | 853d9b869d3b32f7900a13ee70f23a25e43d50db (diff) | |
download | tor-75106a26b4ef8167406cd4d457c24e4aa6618118.tar.gz tor-75106a26b4ef8167406cd4d457c24e4aa6618118.zip |
Fix type in socks5.trunnel
Diffstat (limited to 'src/trunnel/socks5.trunnel')
-rw-r--r-- | src/trunnel/socks5.trunnel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trunnel/socks5.trunnel b/src/trunnel/socks5.trunnel index 4818d14087..b6b8a34f2b 100644 --- a/src/trunnel/socks5.trunnel +++ b/src/trunnel/socks5.trunnel @@ -64,7 +64,7 @@ struct socks5_client_userpass_auth { char passwd[passwd_len]; } -struct socks5_server_userpath_auth { +struct socks5_server_userpass_auth { u8 version IN [1]; u8 status; } |