aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
Commit message (Expand)AuthorAge
* Change end-of-file NLNL convention. It turns out arma I and I agree.•••svn:r4382 Nick Mathewson2005-06-09
* New whitespace normalization rule: no blank line at EOF.•••svn:r4378 Nick Mathewson2005-06-09
* dump periodic memory usage stats•••svn:r4348 Roger Dingledine2005-06-08
* reenable the part of the code that tries to flush as soon as an OR outbuf•••has a full tls record available. perhaps this will make OR outbufs not grow as huge except in rare cases, thus saving lots of cpu time plus memory. svn:r4343 Roger Dingledine2005-06-08
* when you send a USR2 signal, the log message now tells you to send•••a HUP signal if you want to change back to old log levels. svn:r4332 Roger Dingledine2005-06-07
* Use correct errno from libevent on win32•••svn:r4327 Nick Mathewson2005-06-07
* Fix win32 compilation: backport candidate•••svn:r4320 Nick Mathewson2005-06-06
* When RNG seeding fails, die. Backport candidate•••svn:r4319 Nick Mathewson2005-06-06
* Instrument buffers.c and rephist.c memory usage•••svn:r4317 Nick Mathewson2005-06-06
* clean up a few more log entries•••svn:r4304 Roger Dingledine2005-05-27
* downgrade the 'caught sigpipe' notice.•••we're going to pretend like all of these are fine. svn:r4301 Roger Dingledine2005-05-25
* make lucky's weird libevent poll einprogress bug just warn, not kill tor.•••svn:r4300 Roger Dingledine2005-05-24
* Fix not-freed-on-exit event•••svn:r4298 Nick Mathewson2005-05-24
* Bugfix: we were checking to see if you want to send a keepalive, based•••on five minutes since last successful write. But if you have bytes queued already, and they're not getting through, we were adding a new keepalive every second. This was bad. svn:r4296 Roger Dingledine2005-05-23
* i screwed up the dirport reachability testing when we don't yet•••have a cached version of the directory. hopefully now fixed. svn:r4284 Roger Dingledine2005-05-23
* Make hashed controller password encoding use hex not base64; this makes it po...•••svn:r4279 Nick Mathewson2005-05-23
* a note for nick about other memory not freed at exit•••svn:r4275 Roger Dingledine2005-05-20
* free some memory that is still reachable on exit•••svn:r4234 Roger Dingledine2005-05-16
* clean up some log entries•••svn:r4228 Roger Dingledine2005-05-15
* move the periodic buffer shrinking interval from 3 mins to 1 min•••svn:r4204 Roger Dingledine2005-05-14
* Implement --verify-config command-line option to fix bug 69.•••svn:r4182 Nick Mathewson2005-05-07
* log buffer sizes on kill -usr1 too.•••svn:r4180 Roger Dingledine2005-05-06
* first iteration of scrubbing sensitive strings from logs.•••also generally clean up log messages. svn:r4174 Roger Dingledine2005-05-03
* Call tor_free_all instead of connections_free_all after forking•••svn:r4173 Nick Mathewson2005-05-03
* Change buffer shrinking strategy: only try to shrink once every 3 minutes. D...•••svn:r4165 Nick Mathewson2005-05-02
* clean up this TOR_FRAGILE business•••svn:r4116 Roger Dingledine2005-04-26
* help debug: when we close a conn due to timeout, tell us its•••file descriptor, not its connectionarray index. svn:r4113 Roger Dingledine2005-04-25
* zero-out errno before calling event_dispatch, just in case we have misdiagnos...•••svn:r4081 Nick Mathewson2005-04-17
* remove some redundant code•••svn:r4062 Roger Dingledine2005-04-08
* Change conn_(type|state)_to_string from const arrays to switch functions so w...•••svn:r4045 Nick Mathewson2005-04-07
* blow away most calls to assert_all_pending_dns_resolves_ok, since•••they're eating our cpu. svn:r4034 Roger Dingledine2005-04-06
* fix an assert trigger: when we have the rare case of accepting•••a conn on 0.0.0.0:0, then when we look through the connection array, we'll find any of the workers. this is no good. svn:r4027 Roger Dingledine2005-04-06
* Give better warnings if connection_close_unattached_ap gets called twice or c...•••svn:r3990 Nick Mathewson2005-04-02
* update copyright notices.•••svn:r3982 Nick Mathewson2005-04-01
* Use recent libevent features when possible•••svn:r3940 Nick Mathewson2005-04-01
* still publish your descriptor if orport is reachable but dirport isn't•••when building testing circs for orport testing, require high-bandwidth nodes, so fewer circs fail. complain about unreachable orport separately from unreachable dirport. svn:r3935 Roger Dingledine2005-03-31
* don't check for reachability, and don't whine about it, while we're•••hibernating. svn:r3919 Roger Dingledine2005-03-29
* but only do the rapid reachability testing if we're hoping to be a server.•••svn:r3902 Roger Dingledine2005-03-27
* if your server hasn't found itself to be reachable, complain every•••20 minutes, not just once. svn:r3897 Roger Dingledine2005-03-27
* clean up socks reply stuff more.•••add a few more reasons so we can be more informative. svn:r3895 Roger Dingledine2005-03-27
* stop most cases of hanging up on a socks connection without sending•••the socks reject. audit for remaining ones. also make things more uniform so we always remember to hold-open-until-flushed, etc. svn:r3891 Roger Dingledine2005-03-27
* try harder to establish reachability, in the first 20 minutes•••of uptime. svn:r3884 Roger Dingledine2005-03-26
* make it clearer to the human that his server is testing•••its reachability. tell him when it succeeds, or when 20 minutes pass and it hasn't succeeded yet. svn:r3882 Roger Dingledine2005-03-26
* and fill in another missing socks reply•••svn:r3877 Roger Dingledine2005-03-25
* remove dead code•••svn:r3875 Roger Dingledine2005-03-25
* Fix bug 44: on HUP, if descriptor building fails (say, because router_get_my_...•••svn:r3839 Nick Mathewson2005-03-23
* fix a 32bit/64bit sprintf mixup that weasel pointed out•••svn:r3823 Roger Dingledine2005-03-22
* Prevent spurious closes when we put stuff on a conn that has not written for ...•••svn:r3816 Nick Mathewson2005-03-22
* cleanup and a question•••svn:r3815 Roger Dingledine2005-03-22
* Clear up a couple of pedantic compiler warnings•••svn:r3812 Nick Mathewson2005-03-22