diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-07-02 23:23:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-07-02 23:26:37 -0400 |
commit | ded6bbf70a3b63bb423b241c66684becefb1cff7 (patch) | |
tree | 78db4d2a2637f96b7b5f85ff85acc1bc62804223 /src/or/circuitbuild.h | |
parent | c4b831e92d68e6c56246ae6e5b2002ef558525ac (diff) | |
download | tor-ded6bbf70a3b63bb423b241c66684becefb1cff7.tar.gz tor-ded6bbf70a3b63bb423b241c66684becefb1cff7.zip |
Style and grammar tweaks on 2841 branch
Diffstat (limited to 'src/or/circuitbuild.h')
-rw-r--r-- | src/or/circuitbuild.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/circuitbuild.h b/src/or/circuitbuild.h index 54f82500fc..74715b7d06 100644 --- a/src/or/circuitbuild.h +++ b/src/or/circuitbuild.h @@ -14,13 +14,13 @@ /** Represents a pluggable transport proxy used by a bridge. */ typedef struct { - /* SOCKS version */ + /** SOCKS version: One of PROXY_SOCKS4, PROXY_SOCKS5. */ int socks_version; - /* Name of pluggable transport protocol */ + /** Name of pluggable transport protocol */ char *name; - /* Address of proxy */ + /** Address of proxy */ tor_addr_t addr; - /* Port of proxy */ + /** Port of proxy */ uint16_t port; } transport_t; |