diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-28 15:49:12 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-28 15:49:12 +0000 |
commit | 7fc30fc1e6c3383ca064d8047797006cd543e4b4 (patch) | |
tree | 0e3a7ab99d5dcef10d05d3c0ba4f35dfec9055c5 /src/or/router.c | |
parent | 22727b4edc64b26aed850297dbf274bab7fd6c44 (diff) | |
download | tor-7fc30fc1e6c3383ca064d8047797006cd543e4b4.tar.gz tor-7fc30fc1e6c3383ca064d8047797006cd543e4b4.zip |
accept *:706 (silc) by default
svn:r3006
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 0ba606b92f..e10b2658d9 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -446,7 +446,7 @@ void router_upload_dir_desc_to_dirservers(int force) { directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_DIR, s, strlen(s)); } -#define DEFAULT_EXIT_POLICY "reject 0.0.0.0/8,reject 169.254.0.0/16,reject 127.0.0.0/8,reject 192.168.0.0/16,reject 10.0.0.0/8,reject 172.16.0.0/12,accept *:20-22,accept *:53,accept *:79-81,accept *:110,accept *:143,accept *:443,accept *:873,accept *:993,accept *:995,reject *:4661-4662,reject *:1214,reject *:6346,accept *:1024-65535,reject *:*" +#define DEFAULT_EXIT_POLICY "reject 0.0.0.0/8,reject 169.254.0.0/16,reject 127.0.0.0/8,reject 192.168.0.0/16,reject 10.0.0.0/8,reject 172.16.0.0/12,accept *:20-22,accept *:53,accept *:79-81,accept *:110,accept *:143,accept *:443,accept *:706,accept *:873,accept *:993,accept *:995,reject *:4661-4662,reject *:1214,reject *:6346,accept *:1024-65535,reject *:*" /** Set the exit policy on <b>router</b> to match the exit policy in the * current configuration file. If the exit policy doesn't have a catch-all |