aboutsummaryrefslogtreecommitdiff
path: root/src/or
Commit message (Collapse)AuthorAge
* fix duplicate dns_cancel_pending_resolve reported by Giorgos PallasRoger Dingledine2005-01-04
| | | | svn:r3293
* bandaid: make Giorgos Pallas's dns assert bug not actually crash on him.Roger Dingledine2005-01-04
| | | | | | | one day we should try to figure out what's actually going on here. svn:r3280
* Nothing actually _uses_ socks_port, so why publish it? For backward ↵Nick Mathewson2005-01-04
| | | | | | compatibility, publish a socks_port of 0, and never read socks_port. svn:r3279
* post 0.0.9.x, demand that servers declare at least 20000 bytes/sRoger Dingledine2005-01-04
| | | | | | | for bandwidthrate svn:r3277
* Make sequence of log messages when starting on win32 with no config file ↵Nick Mathewson2005-01-04
| | | | | | more reasonable. svn:r3275
* forward-port the fix for the compiler warningRoger Dingledine2005-01-04
| | | | svn:r3273
* update print_usage to use new urlRoger Dingledine2005-01-03
| | | | svn:r3267
* update url for when users try to use socksport as an http proxyRoger Dingledine2005-01-03
| | | | svn:r3265
* Log when we retry a directory connectionNick Mathewson2005-01-03
| | | | svn:r3258
* Use correct logic to decide whether there are more directory servers to retry.Nick Mathewson2005-01-03
| | | | svn:r3257
* Split mark-dir-failed-and-retry logic into separate function; make it retry ↵Nick Mathewson2005-01-03
| | | | | | runningrouters as well as directory fetches; note that the do-we-need-to-give-up test is wrong. svn:r3256
* Fix an unused function warningNick Mathewson2005-01-03
| | | | svn:r3255
* Make directory fail-and-retry logic happen in connection_about_to_close(); ↵Nick Mathewson2005-01-03
| | | | | | fixes win32 bug. svn:r3253
* More work on task #43: fix race conditions on multithreaded (win32) servers.Nick Mathewson2005-01-03
| | | | svn:r3251
* Possible fix for task #43: when running on a multithreaded environment ↵Nick Mathewson2005-01-03
| | | | | | (currently only windows), threads should not close opposite sides of their socketpairs, and workers should not call connection_free_all(). This may fix win32 servers. svn:r3247
* Resolve task 42: find where 19-char nicknames were getting truncated when ↵Nick Mathewson2005-01-03
| | | | | | read from certs, and fix it. Also audit use of MAX_NICKNAME_LEN; no other badness found, but some docs/code cleaned up a touch. svn:r3244
* bugfix: if a server uploads a descriptor that's unapproved, actuallyRoger Dingledine2005-01-03
| | | | | | | tell him so. svn:r3243
* stop checking for clock skew, even for servers.Roger Dingledine2005-01-03
| | | | | | | | | 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
* fix the assert bug reported by bassclef@163.comRoger Dingledine2005-01-02
| | | | svn:r3237
* Fix a double-mark-for-close bug, where we were finding a connRoger Dingledine2005-01-01
| | | | | | | | | 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
* when a dirserver causes you to give a warn, mention which dirserver it wasRoger Dingledine2005-01-01
| | | | svn:r3234
* ...but only if you're a serverRoger Dingledine2004-12-31
| | | | svn:r3233
* require BandwidthRate to be at least 10kB/sRoger Dingledine2004-12-31
| | | | svn:r3232
* actually make it stop keeping track of times. whoops.Roger Dingledine2004-12-25
| | | | svn:r3230
* stop calling assert_connection_ok(conn, time(NULL)) on every singleRoger Dingledine2004-12-25
| | | | | | | conn on every single loop. svn:r3229
* stop telling win32 folks they have a bug just because we haven't finishedRoger Dingledine2004-12-25
| | | | | | | making tor work on win32 yet. svn:r3227
* initial profiling by phobos says we spend a whole lot of timeRoger Dingledine2004-12-25
| | | | | | | measuring how long each cell takes to process. make that optional. svn:r3226
* when you're loading the rendezvous service keys in options_act(),Roger Dingledine2004-12-24
| | | | | | | don't call it 'reloading'. svn:r3225
* don't connection_edge_end() on eof if we're already marked for close,Roger Dingledine2004-12-24
| | | | | | | because if we are then it's because we already got an end. svn:r3223
* remove sentence-fragment comment refering to a design that never happened.Nick Mathewson2004-12-24
| | | | svn:r3220
* Remove length restriction when generating directories.Nick Mathewson2004-12-24
| | | | svn:r3218
* Fix for running-routers length bugNick Mathewson2004-12-24
| | | | svn:r3216
* and forward port the cleanupRoger Dingledine2004-12-22
| | | | svn:r3211
* fix a crash: if you do socks4 with an IP of 0.0.0.x then we get trickedRoger Dingledine2004-12-22
| | | | | | | | | into thinking you're doing socks4a, and we look for the next byte. thanks to aphex for finding this. svn:r3207
* move network_init from or/main to common/compatRoger Dingledine2004-12-22
| | | | | | | | call network_init in tor-resolve.c too move tor_lookup_hostname from common/util to common/compat svn:r3203
* respond to an 009 XXXRoger Dingledine2004-12-22
| | | | svn:r3201
* Workaround for brain-damaged __FILE__ handling on MSVC: keep Nick's name outNick Mathewson2004-12-22
| | | | | | | of the warning messages. svn:r3199
* forward port:Roger Dingledine2004-12-21
| | | | | | | fix a fencepost: we were blowing away the \n when reporting confvalue items svn:r3194
* When listing circuits that are pending on an opening OR connection,Roger Dingledine2004-12-17
| | | | | | | | if we're an OR we were listing circuits that *end* at us as being pending on every listener, dns/cpu worker, etc. Stop that. svn:r3171
* Make split(..., NULL) split on horizontal space; fix bug with tabs in config ↵Nick Mathewson2004-12-16
| | | | | | file. svn:r3155
* Clarify confusing messageNick Mathewson2004-12-16
| | | | svn:r3151
* bugfix: when we're reporting event circuit status, don't call it a stream.Roger Dingledine2004-12-14
| | | | | | | while we're at it, include ":port" in the stream event string. svn:r3148
* 0.0.9 broke hibernation. darn it.Roger Dingledine2004-12-13
| | | | svn:r3147
* Remove bugfixes that did not actually do anything, before we start a cargo cult.Nick Mathewson2004-12-13
| | | | svn:r3145
* Fix a bug in parsing HashedControlPassword.Nick Mathewson2004-12-13
| | | | svn:r3143
* clarify a log entryRoger Dingledine2004-12-13
| | | | svn:r3142
* note a future thing we should doRoger Dingledine2004-12-13
| | | | svn:r3141
* clean up logging,Roger Dingledine2004-12-13
| | | | | | | | | make it clearer which warns are bugs, make the control log event match its specification, point out a bug in how we deal with failure when renewing the tls context. svn:r3138
* Only launch dns workers when we are actually starting a server.Nick Mathewson2004-12-13
| | | | svn:r3137
* when hibernating, don't advertise any portsRoger Dingledine2004-12-11
| | | | | | | | | this is important for the dirport, because clients will still ask you for a directory, and they'll be sad when you're down. and do the other ports too, because hey, they're not listening. svn:r3133