aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection.c
Commit message (Expand)AuthorAge
* add conn->requested_resource to connection_t checks.•••svn:r4951 Nick Mathewson2005-09-08
* Only caches download network-status for now, and they use a different strateg...•••svn:r4944 Nick Mathewson2005-09-08
* Make a new AssumeReachable config option that will publish anyway.•••Also, let authdirservers start without setting their Address field. Something is still not working though. Will fix in morning. svn:r4839 Roger Dingledine2005-08-26
* Also set event_mask=0 in connection_free_all, and dont send events to marked ...•••svn:r4729 Nick Mathewson2005-08-07
* incomplete patch for matt's info controller signal term bug•••svn:r4728 Roger Dingledine2005-08-07
* Fix idiot bug. The "free the IP history" code belons in connection_free_all(...•••svn:r4691 Nick Mathewson2005-08-04
* Make clients regenerate their keys when their IP address changes.•••svn:r4688 Nick Mathewson2005-08-03
* Be consistent about preferring foo* to struct foo*•••svn:r4637 Nick Mathewson2005-07-22
* Initial, somewhat dodgy implementation of helper nodes. It has too many XXXX...•••svn:r4633 Nick Mathewson2005-07-22
* missed one•••svn:r4567 Roger Dingledine2005-07-14
* tell us what kind of listener it is, too•••svn:r4566 Roger Dingledine2005-07-14
* fix opening listener log msg•••svn:r4565 Nick Mathewson2005-07-14
* Populate address field of listeners with an actually sane value.•••svn:r4564 Nick Mathewson2005-07-14
* trivial changes on nick's rendezvous commit•••svn:r4553 Roger Dingledine2005-07-14
* Macro-fu to get DEBUG events working.•••svn:r4539 Nick Mathewson2005-07-13
* Change retry_listeners: when force is false, close and re-open a minimal set ...•••svn:r4528 Nick Mathewson2005-07-11
* Start implementing framework for revised control spec.•••svn:r4447 Nick Mathewson2005-06-17
* Remove code that has been #if-0ed for a long time.•••svn:r4435 Nick Mathewson2005-06-15
* Docment or add DOCDOC comments to undocumented functions in src/or. Make fun...•••svn:r4411 Nick Mathewson2005-06-11
* move more docs into our code•••svn:r4406 Roger Dingledine2005-06-11
* Change end-of-file NLNL convention. It turns out arma I and I agree.•••svn:r4382 Nick Mathewson2005-06-09
* pay more attention to the ClientOnly config option•••svn:r4367 Roger Dingledine2005-06-09
* 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
* 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
* If a socks connection ends because read fails, don't warn that you're•••not sending a socks reply back. (bug reported by Warren Barrow) svn:r4277 Roger Dingledine2005-05-21
* add HttpProxyAuthenticator config option too•••svn:r4272 Roger Dingledine2005-05-20
* doxygeny goodness from tyranix•••svn:r4262 Roger Dingledine2005-05-17
* Make Tor compile with no warnings with gcc4.0 on OSX•••svn:r4184 Nick Mathewson2005-05-07
* first iteration of scrubbing sensitive strings from logs.•••also generally clean up log messages. svn:r4174 Roger Dingledine2005-05-03
* Change buffer shrinking strategy: only try to shrink once every 3 minutes. D...•••svn:r4165 Nick Mathewson2005-05-02
* Re-do fragmented control message handling to work with new buf_t system.•••svn:r4144 Nick Mathewson2005-04-27
* Clean/renormalize whitespace•••svn:r4122 Nick Mathewson2005-04-26
* clean up this TOR_FRAGILE business•••svn:r4116 Roger Dingledine2005-04-26
* Add kludgy function to force controllers to flush EVENT_ERR_MSG events.•••svn:r4057 Nick Mathewson2005-04-08
* Move a quote, fix a log.•••svn:r4056 Nick Mathewson2005-04-08
* fix format bug•••svn:r4051 Roger Dingledine2005-04-07
* Improve conn_*_to_string; add circuit_state_to_string; make skewed-descriptor...•••svn:r4047 Nick Mathewson2005-04-07
* Change conn_(type|state)_to_string from const arrays to switch functions so w...•••svn:r4045 Nick Mathewson2005-04-07
* oh, and accept() into the right place, too.•••svn:r4029 Roger Dingledine2005-04-06
* Forward-port the checking of•••sin_addr.s_addr == 0 || sin->sin_port == 0. This just happened on moria2, so I guess it happens rarely on Linux as well as OS X. We can't afford to accept OR conns from 0.0.0.0:0, since we send created cells back to the first addr:port that matches, and we'd better not send them to the wrong place. So, let's drop them all for now, and see if we can find a pattern later. svn:r4028 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
* Rename circuit_get_by_stream to circuit_get_by_edge_conn, and actually start ...•••svn:r4026 Nick Mathewson2005-04-06
* update conn-type-state-strings to handle https states for ORs•••svn:r4018 Roger Dingledine2005-04-06
* Fix Tor for no-threading compilation: move connection_unregister from _connec...•••svn:r4013 Nick Mathewson2005-04-06
* Move most of *_mark_for_close out of macros.•••svn:r3992 Nick Mathewson2005-04-03
* update copyright notices.•••svn:r3982 Nick Mathewson2005-04-01
* redo the state descriptors now that we have a controller-wait state•••svn:r3934 Roger Dingledine2005-03-31
* 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
* 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
* fix another case where we need to send a socks reply (reject)•••back before we close the conn. svn:r3876 Roger Dingledine2005-03-25