diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-02-22 14:10:42 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-02-22 14:10:42 -0500 |
commit | b7f201f74606aff1f77551449bebe8783a59733a (patch) | |
tree | 70ac808a443977ca797e24dafcbda2705e9e9e4f /src/or/policies.c | |
parent | 46b07462ae636eae1e241d5596b3a1d80c82d7ef (diff) | |
parent | cdc59c198a15195a113d68b2c4fbb270792da533 (diff) | |
download | tor-b7f201f74606aff1f77551449bebe8783a59733a.tar.gz tor-b7f201f74606aff1f77551449bebe8783a59733a.zip |
Merge remote branch 'origin/maint-0.2.2'
Conflicts:
src/or/policies.c
src/or/policies.h
Diffstat (limited to 'src/or/policies.c')
-rw-r--r-- | src/or/policies.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/or/policies.c b/src/or/policies.c index d0406d3889..2cf99820b1 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -875,6 +875,14 @@ policies_parse_exit_policy(config_line_t *cfg, smartlist_t **dest, return 0; } +/** Add "reject *:*" to the end of the policy in *<b>dest</b>, allocating + * *<b>dest</b> as needed. */ +void +policies_exit_policy_append_reject_star(smartlist_t **dest) +{ + append_exit_policy_string(dest, "reject *:*"); +} + /** Replace the exit policy of <b>node</b> with reject *:* */ void policies_set_node_exitpolicy_to_reject_all(node_t *node) |