diff options
author | Roger Dingledine <arma@torproject.org> | 2006-09-25 05:24:43 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-09-25 05:24:43 +0000 |
commit | bc848c8740a5f64cc52b97bccd03da7f64347da2 (patch) | |
tree | 80646dafeddd7b9c7ebec02eccc04b40d77886b8 /src/or | |
parent | 5b3cb1faa1674a767d6453497a27497ea00fbeb1 (diff) | |
download | tor-bc848c8740a5f64cc52b97bccd03da7f64347da2.tar.gz tor-bc848c8740a5f64cc52b97bccd03da7f64347da2.zip |
add 6697 (ircs) as longlivedport.
svn:r8496
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 523ec22bfe..50d986c355 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -182,7 +182,7 @@ static config_var_t _option_vars[] = { VAR("LogFile", LINELIST_S, OldLogOptions, NULL), VAR("LogLevel", LINELIST_S, OldLogOptions, NULL), VAR("LongLivedPorts", CSV, LongLivedPorts, - "21,22,706,1863,5050,5190,5222,5223,6667,8300"), + "21,22,706,1863,5050,5190,5222,5223,6667,6697,8300"), VAR("MapAddress", LINELIST, AddressMap, NULL), VAR("MaxAdvertisedBandwidth",MEMUNIT,MaxAdvertisedBandwidth,"128 TB"), VAR("MaxCircuitDirtiness", INTERVAL, MaxCircuitDirtiness, "10 minutes"), @@ -522,7 +522,7 @@ safe_str(const char *address) return address; } -/** Equivalent to escaped(safe_str(address)). See reentrancy node on +/** Equivalent to escaped(safe_str(address)). See reentrancy note on * escaped(): don't use this outside the main thread, or twice in the same * log statement. */ const char * |