aboutsummaryrefslogtreecommitdiff
path: root/src/or
Commit message (Collapse)AuthorAge
* fix some bugs in assert_connection_okRoger Dingledine2004-02-24
| | | | svn:r1118
* start hunting the lucky-bugRoger Dingledine2004-02-22
| | | | svn:r1116
* On OSX, decline to use the built-in select-baed poll wrapper, since it seems ↵Nick Mathewson2004-02-20
| | | | | | to sometimes not work. svn:r1114
* go back to a single exitpolicy parameterRoger Dingledine2004-02-18
| | | | | | | | | if your exitpolicy includes " *:*" then it is final, else we append the default exit policy. (thanks weasel) svn:r1105
* allow imaps and pop3s in default exit policyRoger Dingledine2004-02-18
| | | | svn:r1104
* Get rid of the notion of a separate default default exit policy.Roger Dingledine2004-02-18
| | | | | | | | Create ExitPolicyPrepend config parameter, to customize the default exit policy. svn:r1103
* adding the reattach-after-timeout feature wasn't so easy after all.Roger Dingledine2004-02-18
| | | | | | | maybe it works now. svn:r1101
* retry streams where the connected cell hasn't arrived in 15 secondsRoger Dingledine2004-02-17
| | | | svn:r1100
* Another case of the same.Nick Mathewson2004-02-17
| | | | svn:r1099
* Fix the Big Bug in router_compare_addr_to_exit_policy: we used port 0Nick Mathewson2004-02-17
| | | | | | | | | | to mean "unknown port". But no exit policy supports (nonexistant) port 0, except accept *:*, and we had no special handling for 'unknown port'. Now we do. svn:r1098
* best_support_idx is obsoleteRoger Dingledine2004-02-17
| | | | | | | (also doesn't fix the bug) svn:r1097
* Propagate yes/no/maybe a little farther forward.Nick Mathewson2004-02-17
| | | | svn:r1096
* make braces cleaner, bug still persistsRoger Dingledine2004-02-17
| | | | svn:r1095
* Fix router_compare_addr_to_exit_policy, and name its return codes. The bug ↵Nick Mathewson2004-02-17
| | | | | | was: "maybe reject,accept" should be "maybe", not "accept". svn:r1093
* Let paranoid exit nodes (which default to reject) be exit nodesRoger Dingledine2004-02-17
| | | | | | | | | | | | Before we resolve the hostname, we don't know whether its IP will be accepted or rejected by the exit policy of each host. So we were only going with nodes that would certainly accept -- which was just itys and poblano. (This bug was hidden until now by the earlier port bug.) (Actual bugfix pending on Nick's next commit, hopefully.) svn:r1092
* prevent picking middleman nodes as the last node in the circuitRoger Dingledine2004-02-17
| | | | svn:r1088
* install the 'tor' binary to usr/sbin by defaultRoger Dingledine2004-02-17
| | | | svn:r1082
* log when exit situation is hopeless.Nick Mathewson2004-02-04
| | | | svn:r1057
* last minute fix: don't early-flush non-tls streamsRoger Dingledine2004-01-31
| | | | | | | e.g., this breaks directory service svn:r1033
* for perf testing, paths are always 3 hops, not "3 or more"Roger Dingledine2004-01-30
| | | | svn:r1030
* fix a per-circuit memory leakRoger Dingledine2004-01-30
| | | | svn:r1029
* Another related leakNick Mathewson2004-01-30
| | | | svn:r1028
* Freeing twice does *not* make the heap twice as clean.Nick Mathewson2004-01-30
| | | | svn:r1027
* Fix a bug that might have caused the leak, but which might have been hiding ↵Nick Mathewson2004-01-30
| | | | | | other bugs. svn:r1026
* Fix possible (but unlikely) mem leak.Nick Mathewson2004-01-30
| | | | svn:r1025
* finally locate the memory leak,Roger Dingledine2004-01-30
| | | | | | | | plus commit a patch that doesn't fix it (but doesn't hurt? i dunno) svn:r1024
* turn some knobs, add more debuggingRoger Dingledine2004-01-30
| | | | svn:r1023
* note an assert trigger, if you use an old broken netscape socks4Roger Dingledine2004-01-30
| | | | svn:r1022
* Let AP edges receive 'end' relay cells while waiting for 'connected'Roger Dingledine2004-01-20
| | | | svn:r1012
* add an ap_conn connecting state; report connecting delayRoger Dingledine2004-01-20
| | | | svn:r1011
* small default route when doing speed testingRoger Dingledine2004-01-20
| | | | svn:r1010
* push out a tls record's worth of data once you've got itRoger Dingledine2004-01-20
| | | | svn:r1009
* add TOR_PERF macro optionsRoger Dingledine2004-01-20
| | | | svn:r1008
* setuid to User _before_ complaining about running as rootRoger Dingledine2004-01-19
| | | | svn:r1006
* fix assert trigger in serverRoger Dingledine2004-01-19
| | | | | | | | | | | Jan 18 04:11:43.312 [warn] connection_edge_send_command(): no circ. Closing. i think it was while sending a connected relay cell back. reason for having the circ gone is still not known. presumably the end cell arrived at just the right time. svn:r1005
* fix some errors in logs and commentsRoger Dingledine2004-01-16
| | | | svn:r999
* oh, and make it compileRoger Dingledine2004-01-11
| | | | | | | | still need to make a decision about per-connection rate limiting (take it out? update it?) svn:r984
* split the token bucket into 'rate' and 'burst' paramsRoger Dingledine2004-01-10
| | | | | | | | | | | we're not entirely migrated to burst yet, for backward compatibility note some win32 probable-bugs clean up routerlist.c svn:r982
* resolve cygwin warnings for pre19Roger Dingledine2004-01-08
| | | | svn:r981
* Fix the dns bug: children weren't dyingRoger Dingledine2004-01-06
| | | | | | | | | | | | | | | We were telling a child to die by closing the parent's file descriptor to him. But newer children were inheriting the open file descriptor from the parent, and since they weren't closing them, the socket never closed, so the child never read eof, so he never knew to exit. As a side effect to this bug, we were probably failing to properly close connections to remote hosts, ORs, and OPs, after a dns child was born. I'm surprised Tor worked at all. svn:r974
* the onionskin challenge length was 30 bytes longer than necessaryRoger Dingledine2004-01-05
| | | | | | | (i think ;) svn:r971
* print an entry at the top of the logfile so you know it's workingRoger Dingledine2004-01-05
| | | | | | | clean up a minor bug in a debugfile log entry svn:r970
* Integrate new daemon code, adapted from submission by christian grothoffNick Mathewson2004-01-03
| | | | svn:r969
* fix endian issue: rh.integrity was getting sent wrongRoger Dingledine2004-01-02
| | | | | | | now it's a char[4] rather than an int svn:r966
* stop a bug that straycat may have foundRoger Dingledine2004-01-01
| | | | svn:r964
* make loglevel info less noisyRoger Dingledine2003-12-30
| | | | svn:r961
* randomize the initial circ_id and stream_id, so an adversary whoRoger Dingledine2003-12-28
| | | | | | | | breaks in part-way through can't learn how many circs/streams have been made svn:r960
* back out the insert-padding-if-conflict codeRoger Dingledine2003-12-26
| | | | | | | use recognized + digest instead, just assume it's enough bits svn:r959
* checkpoint: revamp relay cell packaging and handlingRoger Dingledine2003-12-23
| | | | | | | | include the infrastructure for inserting padding cells when there's a relay-recognized conflict, but it does not work currently. svn:r958
* correct a warn message in mark_if_closedRoger Dingledine2003-12-23
| | | | svn:r956