aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
* implement weasel's suggestion to fix the bug that newly bootstrapped•••tor networks couldn't do hidden services until they had nodes with high uptime: if you're trying to pick a node for your circuit and you demand uptime or capacity and nothing works, then abandon your need for uptime and capacity. svn:r5589 Roger Dingledine2005-12-15
* remove a stray parenthesis that got into the tor-switchproxy doc•••svn:r5588 Roger Dingledine2005-12-14
* When we mark a router as down, also mark its local_routerstatus as not runnin...•••svn:r5587 Nick Mathewson2005-12-14
* Choose directory servers from routerstatus list, not from routerinfo list. T...•••svn:r5586 Nick Mathewson2005-12-14
* Make hashtables use a little less space on 64-bit architectures.•••svn:r5585 Nick Mathewson2005-12-14
* Updated link to SwitchProxy•••svn:r5584 Thomas Sjögren2005-12-14
* Shave off 8 bytes per connection and 4 bytes per circuit by paying attention ...•••svn:r5583 Nick Mathewson2005-12-14
* Bite the bullet and limit all our source lines to 80 characters, the way IBM ...•••svn:r5582 Nick Mathewson2005-12-14
* another possible patch related to circuit_free and memory stomping.•••svn:r5580 Nick Mathewson2005-12-14
* Fix a potential memory stomp on servers running hidden services. Found by wea...•••svn:r5579 Nick Mathewson2005-12-14
* orconn_identity_map was another static variable that started•••out NULL and didn't change until it needed to change. svn:r5578 Roger Dingledine2005-12-14
* sometimes, when we just started tor, we haven't created that•••smartlist yet. so don't free it. svn:r5577 Roger Dingledine2005-12-14
* bugfix: when we removed a dead helper node, we never committed that•••change to disk. svn:r5576 Roger Dingledine2005-12-13
* extendcircuit and attachstream would complain about not enough•••arguments, but then just keep on going anyway. svn:r5575 Roger Dingledine2005-12-12
* Have dirctory authorites note which servers make good V2 directory caches in ...•••svn:r5574 Nick Mathewson2005-12-12
* Make directory authorities ignore router uploads that have only cosmetic diff...•••svn:r5573 Nick Mathewson2005-12-12
* And make the debian package build with CVS again•••svn:r5572 Peter Palfrader2005-12-11
* New upstream release•••svn:r5570 Peter Palfrader2005-12-11
* Don't use helper nodes for circuits with purpose 'testing'.•••Also, when picking the helper node for a given circuit, exclude the circuit's exit from your choices. svn:r5569 Roger Dingledine2005-12-11
* when removing dead helpers, only write or_state to disk once at the•••end, not for every helper you remove. svn:r5568 Roger Dingledine2005-12-11
* mark the helper node as down if we time-out on the circuit handshake•••with him. svn:r5567 Roger Dingledine2005-12-11
* don't mark the helper node as down when we fail to connect to•••our https proxy. svn:r5566 Roger Dingledine2005-12-11
* fix yet another time comparison bug. we were abandoning helpers•••as soon as they became unavailable. (is this true?) svn:r5565 Roger Dingledine2005-12-11
* fix an error in reporting why we abandoned a helper node•••svn:r5564 Roger Dingledine2005-12-11
* choose helper nodes to have high capacity always•••svn:r5563 Roger Dingledine2005-12-11
* a first go at fixing a bug matt edman reported: when he tries•••to "setconf log" via the controller, it is friendly and gives him a log to stdout, even though he didn't ask for one. svn:r5562 Roger Dingledine2005-12-11
* setconf orport=9001•••513 Unrecognized option value it's not unrecognized. it's unacceptable. (in this case, i still have to consult the logs to figure out why, but at least i have an inkling that maybe i should.) svn:r5561 Roger Dingledine2005-12-11
* whenever we hupped or did a controller setconf, we were prepending•••another reachableaddresses *:80,*:443 if fascistfirewall was set, and we were appending another reject *:* regardless. svn:r5560 Roger Dingledine2005-12-11
* i think fascistfirewall still has its uses. it's a synonym•••for a certain reachableaddresses line, but it's easier to remember and people already understand it. i think we should think about undeprecating it. svn:r5559 Roger Dingledine2005-12-11
* bump to 0.1.1.10-alpha-cvs•••svn:r5558 Roger Dingledine2005-12-11
* the other rest of the 0.1.1.10-alpha changelog.•••svn:r5556 Roger Dingledine2005-12-11
* put a date on the changelog•••svn:r5555 Roger Dingledine2005-12-11
* the rest of the 0.1.1.10-alpha changelog•••svn:r5554 Roger Dingledine2005-12-11
* bump to 0.1.1.10-alpha•••svn:r5553 Roger Dingledine2005-12-10
* explain why 0.1.1.9-alpha-cvs is a special version.•••svn:r5552 Roger Dingledine2005-12-10
* 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
* crank the max line limit down to 150 chars.•••svn:r5550 Roger Dingledine2005-12-10
* Tell people to wait for a bit before registering their server, so they can pr...•••svn:r5549 Peter Palfrader2005-12-09
* In my private little universe, terminals are still 80 columns. Impose a 160-...•••svn:r5548 Nick Mathewson2005-12-09
* Normalize whitespace•••svn:r5547 Nick Mathewson2005-12-09
* For some bizarre reason, MSVC does not implement GCC extensions. Who would ha...•••svn:r5546 Nick Mathewson2005-12-09
* util.c:1308: error: conflicting types for "is_internal_IP"•••svn:r5545 Nick Mathewson2005-12-09
* let the user configure a sockslistenaddress on other private IPs•••besides 127.x.y.z without complaining. and give a better message in the log. svn:r5544 Roger Dingledine2005-12-09
* let is_internal_IP() know whether you're asking about an IP•••address for connecting or an IP address for binding, because in the latter, 0.0.0.0 is a special case. svn:r5543 Roger Dingledine2005-12-09
* Make code to handle "private" alias work when assume_action is set.•••svn:r5542 Nick Mathewson2005-12-08
* The more I punctuate,, the better my documentation is..•••svn:r5540 Roger Dingledine2005-12-08
* make it clearer in the docs what to expect when testing reachability.•••svn:r5539 Roger Dingledine2005-12-08
* when we're checking reachability, make it clearer in the logs•••what to expect. svn:r5538 Roger Dingledine2005-12-08
* remove a redundant memcpy when extending to a new server•••and attaching circuits to it. svn:r5537 Roger Dingledine2005-12-08
* Oops. 0.0.0.0/8 and 169.254.0.0/16 are also special.•••svn:r5536 Nick Mathewson2005-12-08