diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-08-04 20:12:44 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-08-04 20:12:44 +0000 |
commit | 487087723165bd49e310cd4ed494987a5fa83569 (patch) | |
tree | e808d3afad4432199717371afdb8a5220ae00ef8 /src/or/buffers.c | |
parent | 4cb89fd557db8ac66234f94f922fd5b4a371a9e0 (diff) | |
download | tor-487087723165bd49e310cd4ed494987a5fa83569.tar.gz tor-487087723165bd49e310cd4ed494987a5fa83569.zip |
Add SOCKSAndDNS link to appropriate log message, since we wind up pointing everybody to it anyway
svn:r4695
Diffstat (limited to 'src/or/buffers.c')
-rw-r--r-- | src/or/buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c index 84d26efa80..29e1667f85 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -950,7 +950,7 @@ fetch_from_buf_socks(buf_t *buf, socks_request_t *req) req->port = ntohs(*(uint16_t*)(buf->cur+8)); buf_remove_from_front(buf, 10); if (!have_warned_about_unsafe_socks) { - log_fn(LOG_WARN,"Your application (using socks5 on port %d) is giving Tor only an IP address. Applications that do DNS resolves themselves may leak information. Consider using Socks4A (e.g. via privoxy or socat) instead.", req->port); + log_fn(LOG_WARN,"Your application (using socks5 on port %d) is giving Tor only an IP address. Applications that do DNS resolves themselves may leak information. Consider using Socks4A (e.g. via privoxy or socat) instead. For more information, please see http://wiki.noreply.org/noreply/TheOnionRouter/TorFAQ#SOCKSAndDNS", req->port); // have_warned_about_unsafe_socks = 1; // (for now, warn every time) } return 1; |