diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-02-11 22:06:44 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-02-11 22:06:44 -0500 |
commit | 1f679d4ae11cd976f5539bc4ddf36873132aeb00 (patch) | |
tree | 4f6372d74ba1c2af656daed7c08328964591766b /src/or/policies.c | |
parent | fed8c5199a9fbc91a7476323c145c59e9e30e30c (diff) | |
download | tor-1f679d4ae11cd976f5539bc4ddf36873132aeb00.tar.gz tor-1f679d4ae11cd976f5539bc4ddf36873132aeb00.zip |
Fix all doxygen warnings other than "X is not documented"
Diffstat (limited to 'src/or/policies.c')
-rw-r--r-- | src/or/policies.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/or/policies.c b/src/or/policies.c index 984ab6acf9..179230b88a 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -1703,19 +1703,21 @@ exit_policy_remove_redundancies(smartlist_t *dest) /** Reject private helper for policies_parse_exit_policy_internal: rejects * publicly routable addresses on this exit relay. * - * Add reject entries to the linked list *dest: - * - if configured_addresses is non-NULL, add entries that reject each - * tor_addr_t* in the list as a destination. - * - if reject_interface_addresses is true, add entries that reject each + * Add reject entries to the linked list *<b>dest</b>: + * <ul> + * <li>if configured_addresses is non-NULL, add entries that reject each + * tor_addr_t in the list as a destination. + * <li>if reject_interface_addresses is true, add entries that reject each * public IPv4 and IPv6 address of each interface on this machine. - * - if reject_configured_port_addresses is true, add entries that reject + * <li>if reject_configured_port_addresses is true, add entries that reject * each IPv4 and IPv6 address configured for a port. + * </ul> * * IPv6 entries are only added if ipv6_exit is true. (All IPv6 addresses are * already blocked by policies_parse_exit_policy_internal if ipv6_exit is * false.) * - * The list *dest is created as needed. + * The list in <b>dest</b> is created as needed. */ void policies_parse_exit_policy_reject_private( |