]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fixes ticket #2503
authormikey99 <e_zine99@yahoo.com>
Thu, 12 May 2011 21:33:09 +0000 (17:33 -0400)
committermikey99 <e_zine99@yahoo.com>
Thu, 12 May 2011 21:33:09 +0000 (17:33 -0400)
HTTPS error code 403 is now reported as:
"The https proxy refused to allow connection".
Used a switch statement for additional error codes to be explained
in the future.

src/or/connection.c

index fc2097f9a926d8301d0ccea7ec24644ef3e42a4a..eaae791efc54010e880a41315d50bbab0e795629 100644 (file)
@@ -1504,10 +1504,20 @@ connection_read_https_proxy_response(connection_t *conn)
     return 1;
   }
   /* else, bad news on the status code */
-  log_warn(LD_NET,
-           "The https proxy sent back an unexpected status code %d (%s). "
-           "Closing.",
-           status_code, escaped(reason));
+  switch (status_code) {
+    case 403:
+      log_warn(LD_NET,
+             "The https proxy refused to allow connection to %s "
+             "(status code %d, %s). Closing.",
+             conn->address, status_code, escaped(reason));
+      break;
+    default:
+      log_warn(LD_NET,
+             "The https proxy sent back an unexpected status code %d (%s). "
+             "Closing.",
+             status_code, escaped(reason));
+      break;
+  }
   tor_free(reason);
   return -1;
 }