diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-16 20:39:37 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-16 20:39:37 +0000 |
commit | d2893398f6c98f4ad82f05c41fb9ca40c5020015 (patch) | |
tree | 1600a6f6ab31cff26dd6a3c4710a3fd1cd5e530f /src/or/policies.c | |
parent | a3ec172e1ac0e1ae2b2a09c05edb4e7f2fef4a1e (diff) | |
download | tor-d2893398f6c98f4ad82f05c41fb9ca40c5020015.tar.gz tor-d2893398f6c98f4ad82f05c41fb9ca40c5020015.zip |
r11832@catbus: nickm | 2007-02-16 15:31:59 -0500
Fix 35 remaining DOCDOC comments. Yowza.
svn:r9596
Diffstat (limited to 'src/or/policies.c')
-rw-r--r-- | src/or/policies.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/policies.c b/src/or/policies.c index 392385ce5a..3129ea35f7 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -156,7 +156,8 @@ addr_policy_permits_address(uint32_t addr, uint16_t port, } } -/** DOCDOC */ +/** Return true iff we think our firewall will let us make an OR connection to + * addr:port. */ int fascist_firewall_allows_address_or(uint32_t addr, uint16_t port) { @@ -164,7 +165,8 @@ fascist_firewall_allows_address_or(uint32_t addr, uint16_t port) reachable_or_addr_policy); } -/** DOCDOC */ +/** Return true iff we think our firewall will let us make a directory + * connection to addr:port. */ int fascist_firewall_allows_address_dir(uint32_t addr, uint16_t port) { |