Skip to content
Snippets Groups Projects
Commit 8b01fd7b authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

exit_policy_is_general_exit is IPv4 only; it should admit it.

parent fb421c00
No related branches found
No related tags found
No related merge requests found
......@@ -880,6 +880,8 @@ exit_policy_is_general_exit(smartlist_t *policy)
for (i = 0; i < 3; ++i) {
SMARTLIST_FOREACH(policy, addr_policy_t *, p, {
if (tor_addr_family(&p->addr) != AF_INET)
continue; /* IPv4 only for now */
if (p->prt_min > ports[i] || p->prt_max < ports[i])
continue; /* Doesn't cover our port. */
if (p->maskbits > 8)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment