diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-08-26 11:34:45 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-08-26 11:34:45 -0400 |
commit | c9203749a2ead39433fa4f62452a2360e0901e42 (patch) | |
tree | f0d6ff4b9b93f2726134a3033c023ebc0ec6ce8a /src/or/reasons.c | |
parent | 707a6bd6595024e0b4a998e0a99eb284499a37e3 (diff) | |
download | tor-c9203749a2ead39433fa4f62452a2360e0901e42.tar.gz tor-c9203749a2ead39433fa4f62452a2360e0901e42.zip |
A changelog entry and a bit more documentation for socks-client
Diffstat (limited to 'src/or/reasons.c')
-rw-r--r-- | src/or/reasons.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/reasons.c b/src/or/reasons.c index 78a16af10e..0544990679 100644 --- a/src/or/reasons.c +++ b/src/or/reasons.c @@ -326,6 +326,7 @@ circuit_end_reason_to_control_string(int reason) } } +/** Return a string corresponding to a SOCKS4 reponse code. */ const char * socks4_response_code_to_string(uint8_t code) { @@ -343,6 +344,7 @@ socks4_response_code_to_string(uint8_t code) } } +/** Return a string corresponding to a SOCKS5 reponse code. */ const char * socks5_response_code_to_string(uint8_t code) { |