[tor-commits] [tor/master] socks5 will ask for username/password if we offer it

arma at torproject.org arma at torproject.org
Thu Apr 11 14:40:18 UTC 2013


commit d028c005da8e61f705aff751b5236adf983b310a
Author: Roger Dingledine <arma at torproject.org>
Date:   Thu Apr 11 02:53:26 2013 -0400

    socks5 will ask for username/password if we offer it
    
    Commit a264c4fe made the socks5 server prefer auth 2 if it's offered,
    but it didn't update the unit test to expect it.
---
 src/test/test.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/test/test.c b/src/test/test.c
index 0b55f7b..42aab4c 100644
--- a/src/test/test.c
+++ b/src/test/test.c
@@ -362,7 +362,7 @@ test_socks_5_unsupported_commands(void *ptr)
   test_eq(5, socks->socks_version);
   test_eq(2, socks->replylen);
   test_eq(5, socks->reply[0]);
-  test_eq(0, socks->reply[1]);
+  test_eq(2, socks->reply[1]);
   ADD_DATA(buf, "\x05\x03\x00\x01\x02\x02\x02\x01\x01\x01");
   test_eq(fetch_from_buf_socks(buf, socks, get_options()->TestSocks,
                                get_options()->SafeSocks), -1);





More information about the tor-commits mailing list