aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
Commit message (Expand)AuthorAge
...
* entry nodes are now entry guards.•••this is our last easy chance for a wholesale change. heave ho. svn:r5782 Roger Dingledine2006-01-10
* balance the reachability testing so a smidgen of it happens•••every 10 seconds. this way we don't try to do 500 tls's at once every 20 minutes. svn:r5763 Roger Dingledine2006-01-10
* bugfix: we were leaving open duplicate connections to other ORs•••for a week, rather than closing them once we detect a duplicate. also, avoid some duplicate mark-for-closes in connection-housekeeping. svn:r5752 Roger Dingledine2006-01-07
* and get the log arguments right•••svn:r5747 Roger Dingledine2006-01-07
* a more correct log message•••svn:r5746 Roger Dingledine2006-01-07
* Some tor servers process billions of cells in a matter of days.•••These statistics need to be uint64_t's. svn:r5686 Roger Dingledine2005-12-31
* helper nodes are dead. long live entry nodes.•••(config options EntryNodes and StrictEntryNodes still not implemented.) svn:r5673 Roger Dingledine2005-12-28
* normalize spaces•••svn:r5658 Nick Mathewson2005-12-27
* Keep bandwidth history accross restarts/crashes•••svn:r5637 Peter Palfrader2005-12-23
* Instead of "Network down", say "Is your network connection down?"•••svn:r5607 Nick Mathewson2005-12-15
* Clean fake_status a bit. Switch from has_fetched_directory to have_minimum_d...•••svn:r5591 Nick Mathewson2005-12-15
* Bite the bullet and limit all our source lines to 80 characters, the way IBM ...•••svn:r5582 Nick Mathewson2005-12-14
* when we changed from log_fn to debug/info/notice/warn/err,•••we screwed up the formatting in wild and unpredictable ways. fix it before it becomes convention to format logs in wild and unpredictable ways. still need to do src/common/ someday. svn:r5551 Roger Dingledine2005-12-10
* In my private little universe, terminals are still 80 columns. Impose a 160-...•••svn:r5548 Nick Mathewson2005-12-09
* when we're checking reachability, make it clearer in the logs•••what to expect. svn:r5538 Roger Dingledine2005-12-08
* Expunge remaining places where we used "tree" to mean "associative array".•••svn:r5490 Nick Mathewson2005-12-03
* Move connection_or_remove_from_identity_map() to connection_unlink, but dont ...•••svn:r5470 Nick Mathewson2005-11-30
* when event_add or event_del fail, tell us why.•••(nick, do i have my libevent strerror dance moves correct?) svn:r5462 Roger Dingledine2005-11-26
* "How about 'never'? Does 'never' work for you?"•••Weasel says circuit_get_by_conn is his main timesink. Most of its users were just checking whether OR conns had circuits, so add a circuit count to OR conns, and check that. One was circuit_about_to_close_conn, which was doing an O(n^2) series of calls to get all circs on an OR conn, so make an O(n) function for that. Finally, circuit_get_by_edge_conn was using it as a sanity test that has been around for a while but never found any actualy insanity, so kill that. circuit_get_by_conn is finally dead, which is good, since it was never sane to begin with. svn:r5460 Nick Mathewson2005-11-26
* Dump bytes held to store descriptors.•••svn:r5443 Nick Mathewson2005-11-23
* Recover better from TCP connections to Tor servers that are broken but•••don't tell you (it happens!); and rotate TLS connections once a week. 1) If an OR conn becomes more than a week old, make it obsolete. 2) If it's obsolete and empty, kill it. 3) When an OR makes a second connection to you, allow it. 4) If we want to send a new create cell, but the best conn we've got is obsolete, and the router is 0.1.1.9-alpha-cvs or later, ask for a new conn instead. 5) When we time out on circuit building on the first hop, make that connection obsolete. svn:r5429 Roger Dingledine2005-11-19
* 15*60 is 15 minutes, not 5•••svn:r5424 Peter Palfrader2005-11-18
* Remove ip address change flapping detection. It is not really needed and I d...•••svn:r5423 Peter Palfrader2005-11-18
* Make new logging stuff work on windows; fix a couple of windows typos.•••svn:r5375 Nick Mathewson2005-11-15
* shorten more of the startup log messages•••svn:r5368 Roger Dingledine2005-11-14
* prevent duplicat mark-for-close•••svn:r5347 Nick Mathewson2005-11-04
* enable code to remove members of old_routers when it gets big.•••svn:r5345 Nick Mathewson2005-11-01
* Do round-robin writes of at most 16 kB per write. This might•••be more fair on loaded Tor servers, and it might resolve our Windows crash bug. It might also slow things down. svn:r5332 Roger Dingledine2005-10-29
* Remove last vestiges of old logging interface.•••svn:r5317 Nick Mathewson2005-10-25
* Change more files to new loggin interface. 3 left.•••svn:r5310 Nick Mathewson2005-10-25
* fix some typos•••svn:r5283 Roger Dingledine2005-10-18
* Make a few INFO log lines into DEBUG•••svn:r5257 Peter Palfrader2005-10-17
* more log uncluttering•••svn:r5254 Roger Dingledine2005-10-17
* start the process of reducing clutter in server logs•••svn:r5253 Roger Dingledine2005-10-17
* cut out a warning that doesn't need to warn•••svn:r5252 Roger Dingledine2005-10-16
* Try to extract as many descriptors as possible from truncated http responses....•••svn:r5249 Nick Mathewson2005-10-14
* Check if our IP address has changed every 5 minutes. If it has, update our s...•••svn:r5246 Peter Palfrader2005-10-12
* Once an hour (not just on startup) give OpenSSL some more entropy.•••Add entropy in 512-bit chunks, not 160-bit chunks. (This latter change is voodoo.) svn:r5211 Nick Mathewson2005-10-06
* Rate-limit warnings related to unrecognized MyFamily elements.•••svn:r5204 Nick Mathewson2005-10-05
* call circuit_expire_all_dirty_circs() on do_hup().•••there, now we use it. svn:r5202 Roger Dingledine2005-10-05
* replace former relaunches of directory downloads with reset of failure count ...•••svn:r5195 Nick Mathewson2005-10-05
* size_t int printf mucking•••svn:r5194 Roger Dingledine2005-10-05
* Note the two places where clients will still try to fetch old-style (v1) dire...•••svn:r5193 Nick Mathewson2005-10-05
* reset warning flags on SIGHUP. arma: is this everything?•••svn:r5192 Nick Mathewson2005-10-05
* Fix verbose compiler warnings, including one in routerlist.c that would have ...•••svn:r5190 Nick Mathewson2005-10-05
* Give a less frequent and more helpful warning on failed serverdesc downloads•••svn:r5187 Nick Mathewson2005-10-05
* When we get an EOF or a timeout on a directory connection, note how many byte...•••svn:r5186 Nick Mathewson2005-10-04
* Reorganize some quick-and-dirty code to find out what openssl stuff is leakin...•••svn:r5178 Nick Mathewson2005-10-03
* free helper node status info on shutdown•••svn:r5177 Nick Mathewson2005-09-30
* Try to hunt down a few more leaks•••svn:r5172 Nick Mathewson2005-09-30