aboutsummaryrefslogtreecommitdiff
path: root/src/or/transports.h
diff options
context:
space:
mode:
authorYawning Angel <yawning@schwanenlied.me>2014-09-09 18:21:19 +0000
committerYawning Angel <yawning@schwanenlied.me>2014-09-09 18:21:19 +0000
commitcae44838fecc550f2df16de44b0ef297ecb509a6 (patch)
treef03142b8b754d05d11c80eba9807ae48caffe3e1 /src/or/transports.h
parent60ac9f1c90f6036356f778513f0eb3e2f9760fa3 (diff)
downloadtor-cae44838fecc550f2df16de44b0ef297ecb509a6.tar.gz
tor-cae44838fecc550f2df16de44b0ef297ecb509a6.zip
Fix issues brought up in nickm's review.
* Update pt_get_proxy_uri() documentation. * proxy_supported is now unsigned. * Added a changes file.
Diffstat (limited to 'src/or/transports.h')
-rw-r--r--src/or/transports.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/transports.h b/src/or/transports.h
index bc2331d01b..25fe5a29a9 100644
--- a/src/or/transports.h
+++ b/src/or/transports.h
@@ -82,7 +82,7 @@ typedef struct {
int conf_protocol; /* the configuration protocol version used */
char *proxy_uri; /* the outgoing proxy in TOR_PT_PROXY URI format */
- int proxy_supported : 1; /* the proxy claims to honor TOR_PT_PROXY */
+ unsigned int proxy_supported : 1; /* the proxy honors TOR_PT_PROXY */
int is_server; /* is it a server proxy? */