aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
* Fix assertion failure spotted by arma.•••Apparently, when a DNS failure was already cached, then when we tried to mark the exit connection as closed, we'd try to remove it from the pending queue anyway, and hit an assert. Now, we put failed-resolve connections in a separate state so that mark_for_close does the right thing. svn:r1196 Nick Mathewson2004-03-02
* add --version, note that --help is probably obsolete•••svn:r1195 Roger Dingledine2004-03-02
* make config_assign fail rather than warn for unrecognized config options•••svn:r1194 Roger Dingledine2004-03-02
* make parse_line_from_file fail rather than warn for malformed lines•••svn:r1193 Roger Dingledine2004-03-02
* note an assert trigger bug•••nick, want to fix this? :) svn:r1192 Roger Dingledine2004-03-01
* update the todo•••svn:r1191 Roger Dingledine2004-03-01
* make 'make test' exit(1) if a test fails.•••svn:r1190 Nick Mathewson2004-03-01
* revise spec. It still needs more explanation to be intelligible by the unini...•••svn:r1189 Nick Mathewson2004-03-01
* put switch_id and start_daemon earlier•••svn:r1188 Roger Dingledine2004-02-29
* fix duplicate call to connection_mark_for_close•••svn:r1187 Roger Dingledine2004-02-29
* bugfix: we were checking the wrong thing to see if 'reason'•••was out of range svn:r1186 Roger Dingledine2004-02-29
* New upstream release.•••Upstream tests got fixed svn:r1184 Peter Palfrader2004-02-29
* bump cvs to pre24•••svn:r1183 Roger Dingledine2004-02-29
* changelog for pre23•••svn:r1181 Roger Dingledine2004-02-29
* when a stream is 15s late, print out the circuit at -l warn•••svn:r1180 Roger Dingledine2004-02-29
* print a statement when the first circ is finished,•••so the user knows it's working svn:r1179 Roger Dingledine2004-02-29
* bugfix: only warn about an unrouter router after we've fetched a directory•••svn:r1178 Roger Dingledine2004-02-29
* disable buffer tests, until we rewrite them (one of them fails)•••svn:r1177 Roger Dingledine2004-02-29
* create a separate connection_edge_destroy() function•••svn:r1176 Roger Dingledine2004-02-29
* bugfix: when we time out on a stream and detach, send an end first•••svn:r1175 Roger Dingledine2004-02-28
* bugfix: in some cases, connection_mark_for_close wasn't marking the conn•••svn:r1174 Roger Dingledine2004-02-28
* clearer warning message•••svn:r1173 Roger Dingledine2004-02-28
* disallow changing from ORPort==0 to ORPort>0 on hup•••svn:r1172 Roger Dingledine2004-02-28
* cwd to datadir if it's defined, rather than /•••this way people can get cores if they want to svn:r1171 Roger Dingledine2004-02-28
* bugfix: stop trying to write to a stderr that may not be there•••also, tell start_daemon our desired cwd svn:r1170 Roger Dingledine2004-02-28
* fix the function comment•••svn:r1169 Roger Dingledine2004-02-28
* Split dns_cancel_pending_resolve into dns_cancel_pending_resolve (kill a•••resolve in response to a DNS worker dying) and connection_dns_remove (remove a pending connection from the resolve structure.) svn:r1168 Nick Mathewson2004-02-28
* add a log_warn to notify us of yet another potential dns.c bug•••svn:r1167 Roger Dingledine2004-02-28
* Make dns_cancel_pending_resolve less agressive.•••svn:r1166 Nick Mathewson2004-02-28
* Fix bug on dns_found_answer from mark_to_close stuff.•••svn:r1165 Nick Mathewson2004-02-28
* remove assert from dns.c that's no longer true:•••typically the resolve will be pending, but it could be failed if it just failed and we're working through the 'pending' list, or it could be valid if some other dnsworker raced us to fill in the entry. svn:r1164 Roger Dingledine2004-02-28
* Stop trying to flush on broken sockets marked for close.•••svn:r1163 Nick Mathewson2004-02-28
* some comments to point nick at the latest bugs•••svn:r1162 Roger Dingledine2004-02-28
* better explain exit policies in the torrc•••svn:r1161 Roger Dingledine2004-02-28
* enable assert_connection_ok()•••we weren't actually asserting much. oops. svn:r1160 Roger Dingledine2004-02-28
* note bug in assert_connection_ok•••svn:r1159 Roger Dingledine2004-02-28
* clean up some log messages and severities•••still plenty more left to clean svn:r1158 Roger Dingledine2004-02-28
* make flush_buf have a sane return convention•••svn:r1157 Roger Dingledine2004-02-28
* document 'excludenodes' in man page•••svn:r1156 Roger Dingledine2004-02-28
* rename ExcludedNodes config option to ExcludeNodes•••svn:r1155 Roger Dingledine2004-02-28
* a few more comments for the spec•••svn:r1154 Roger Dingledine2004-02-28
* if a relay cell is unrecognized at the end of the circuit,•••send back a destroy svn:r1153 Roger Dingledine2004-02-28
* some more small fixes•••svn:r1152 Roger Dingledine2004-02-28
* make code more readable; arrbitrarily change a -1 to a 0.•••svn:r1151 Nick Mathewson2004-02-28
* Stop answering "end" with "end"•••svn:r1150 Nick Mathewson2004-02-28
* Push responsibility for connection marking down as far as possible; have only...•••svn:r1149 Nick Mathewson2004-02-28
* Make has_sent_end irrelevant: only try to send end if reason is nonzero•••svn:r1148 Nick Mathewson2004-02-28
* and another one•••svn:r1147 Roger Dingledine2004-02-27
* patches/answers to nick's commit•••svn:r1146 Roger Dingledine2004-02-27
* Refactor mark_for_close, connection_edge_end and friends. Now, everybody•••who wants to shut down a connection calls connection_mark_for_close instead of setting marked_for_close to 1. This automatically removes the connection from the DNS cache if needed, sends a RELAY END cell if appropriate, and can be changed to do whatever else is needed. Still to do: - The same for circuits, maybe. - Add some kind of hold_connection_open_until_flushed flag, maybe. - Change stuff that closes connections with return -1 to use mark_for_close, maybe. svn:r1145 Nick Mathewson2004-02-27