aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAge
...
* more cleanup•••svn:r3347 Roger Dingledine2005-01-12
* fix another integer underflow caused by buckets going negative•••svn:r3346 Roger Dingledine2005-01-12
* fix up some comments•••svn:r3345 Roger Dingledine2005-01-12
* tolerate bandwidtch buckets going negative (i hope)•••svn:r3344 Roger Dingledine2005-01-12
* Make Tor use Niels Provos's libevent instead of it's current•••poll-but-sometimes-select mess. This will let us use faster async cores (like epoll, kpoll, and /dev/poll), and hopefully work better on Windows too. There are some fairly nasty changes to main.c here; this will almost certainly break something. But hey, that's what alphas are for. svn:r3341 Nick Mathewson2005-01-12
* add more chat and interactive protocols to LongLivedPorts•••svn:r3340 Roger Dingledine2005-01-12
* Annotate circuits w/ whether they aim to contain high uptime nodes and/or•••high capacity nodes. When building circuits, choose appropriate nodes. New config option LongLivedPorts to indicate application streams that will want high uptime circuits. When attaching a stream to a circuit, pay attention to its requirements. This means that every single node in an intro rend circuit, not just the last one, will have a minimum uptime. Boost the min uptime from an hour to 24 hours. svn:r3339 Roger Dingledine2005-01-12
* clean up smartlist_string_isin so callers don't have to manage bufs•••themselves svn:r3338 Roger Dingledine2005-01-12
* if somebody starts his tor server in jan 2004 and then fixes his•••clock, don't make his published uptime be a year. svn:r3337 Roger Dingledine2005-01-11
* if you're a server and the auth dirservers are down, go to any other•••server. only give up hope on network reachability when no other servers are reachable either. svn:r3335 Roger Dingledine2005-01-10
* help avoid overflow from len_in + (len_in/n)*len_ins•••nick, do you think this does it? if so, we should maybe backport too. svn:r3334 Roger Dingledine2005-01-10
* separate time_of_process_start from stats_n_seconds_uptime:•••now we reset uptime when a dir fetch entirely fails. this hopefully has something to do with stability of being on the network. svn:r3333 Roger Dingledine2005-01-10
* it helps to use the correct name for the struct•••svn:r3331 Roger Dingledine2005-01-10
* when pruning circuit-wait streams when a dir fetch failed,•••refer in logs to the destination address, not the address of the application connection. svn:r3330 Roger Dingledine2005-01-10
* when we haven't fetched a directory yet, or the last time we•••tried they were all unreachable, assume we are not connected to the network. when an application request comes in during this state, be optimistic and assume we just reconnected. fetch a new directory and if it works, begin making circuits. svn:r3327 Roger Dingledine2005-01-07
* fix unit tests: address has to be a non-private IP, and socksport•••needs to be 0. svn:r3324 Roger Dingledine2005-01-07
* new config option DirAllowPrivateAddresses for authdirservers.•••now by default they refuse router descriptors that have non-IP or private-IP addresses. svn:r3321 Roger Dingledine2005-01-06
* Fix a fun bug: do not rewrite a cached directory back to the cache; otherwise...•••svn:r3319 Nick Mathewson2005-01-06
* finish marking my comment in main.c•••svn:r3318 Roger Dingledine2005-01-06
* clean up string printing in relay logs•••svn:r3317 Roger Dingledine2005-01-06
* fix trivial typo in log entry•••svn:r3316 Roger Dingledine2005-01-06
* typo spotted by chris•••svn:r3308 Nick Mathewson2005-01-05
* Implement SIGNAL control command.•••svn:r3307 Nick Mathewson2005-01-05
* Stop reversing and re-reversing config lines: keep them in order all the time...•••svn:r3305 Nick Mathewson2005-01-05
* Remove broken and undocumented wart where multiple CSV config lines are appen...•••svn:r3301 Nick Mathewson2005-01-05
* fix duplicate dns_cancel_pending_resolve reported by Giorgos Pallas•••svn:r3293 Roger Dingledine2005-01-04
* bandaid: make Giorgos Pallas's dns assert bug not actually crash on him.•••one day we should try to figure out what's actually going on here. svn:r3280 Roger Dingledine2005-01-04
* Nothing actually _uses_ socks_port, so why publish it? For backward compatibi...•••svn:r3279 Nick Mathewson2005-01-04
* post 0.0.9.x, demand that servers declare at least 20000 bytes/s•••for bandwidthrate svn:r3277 Roger Dingledine2005-01-04
* Make sequence of log messages when starting on win32 with no config file more...•••svn:r3275 Nick Mathewson2005-01-04
* make the initial temp log only notice-err, not info-err•••svn:r3274 Roger Dingledine2005-01-04
* forward-port the fix for the compiler warning•••svn:r3273 Roger Dingledine2005-01-04
* update print_usage to use new url•••svn:r3267 Roger Dingledine2005-01-03
* update url for when users try to use socksport as an http proxy•••svn:r3265 Roger Dingledine2005-01-03
* Bugfix: we've been using openssl's BIO_get_mem_data incorrectly.•••We assumed the pem-encoded data written by PEM_write_bio_RSAPrivateKey is nul-terminated, and at least sometimes, it's not. svn:r3263 Roger Dingledine2005-01-03
* make it clearer you can have multiple SocksBindAddress directives•••svn:r3262 Roger Dingledine2005-01-03
* Log when we retry a directory connection•••svn:r3258 Nick Mathewson2005-01-03
* Use correct logic to decide whether there are more directory servers to retry.•••svn:r3257 Nick Mathewson2005-01-03
* Split mark-dir-failed-and-retry logic into separate function; make it retry r...•••svn:r3256 Nick Mathewson2005-01-03
* Fix an unused function warning•••svn:r3255 Nick Mathewson2005-01-03
* Make directory fail-and-retry logic happen in connection_about_to_close(); fi...•••svn:r3253 Nick Mathewson2005-01-03
* More work on task #43: fix race conditions on multithreaded (win32) servers.•••svn:r3251 Nick Mathewson2005-01-03
* Possible fix for task #43: when running on a multithreaded environment (curre...•••svn:r3247 Nick Mathewson2005-01-03
* Resolve task 42: find where 19-char nicknames were getting truncated when rea...•••svn:r3244 Nick Mathewson2005-01-03
* bugfix: if a server uploads a descriptor that's unapproved, actually•••tell him so. svn:r3243 Roger Dingledine2005-01-03
* stop checking for clock skew, even for servers.•••this means we are vulnerable to an attack where somebody recovers and uses a really old certificate. however, if they do that, they probably can get our identity key just as easily. svn:r3241 Roger Dingledine2005-01-03
* clarify the comments about logs in the torrc•••svn:r3239 Roger Dingledine2005-01-02
* fix the assert bug reported by bassclef@163.com•••svn:r3237 Roger Dingledine2005-01-02
* add a comment to explain what ContactInfo is for•••svn:r3236 Roger Dingledine2005-01-01
* Fix a double-mark-for-close bug, where we were finding a conn•••for a cell even if that conn is already marked for close. Don't back-port to 0.0.9.x, since this fix could have weird implications. svn:r3235 Roger Dingledine2005-01-01