aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection.c
Commit message (Expand)AuthorAge
...
* REUSEADDR on normal places means you can rebind to the port•••right after somebody else has let it go. But REUSEADDR on win32 means to let you bind to the port _even when somebody else already has it bound_. So, don't do that on Win32. svn:r3867 Roger Dingledine2005-03-24
* fix an assert -- we're not allowed to write onto a conn after we've•••connection_unregistered it. there's still more work to be done here, since we need to make sure to send back the socks-reply as soon as we know what it will be -- we can't just wait until connection-about-to-close to deal with it. svn:r3847 Roger Dingledine2005-03-23
* fix an over-eager assert, to make httpsproxy get a little farther•••svn:r3846 Roger Dingledine2005-03-23
* forward-port the commenting out of the assert that glenn fink was•••triggering. we still don't know why he was triggering it. svn:r3841 Roger Dingledine2005-03-23
* fix assert triggers (bugs 109 and 96), and put in some•••debugging logs to notice future repeat bugs. svn:r3826 Roger Dingledine2005-03-23
* make httpsproxy more likely to work•••(don't let OR conns do tls until they've finished connecting and doing the proxy dance.) svn:r3824 Roger Dingledine2005-03-22
* Commit fixes for several pending tor core tasks: document all DOCDOCed functi...•••svn:r3769 Nick Mathewson2005-03-17
* Renormalize whitespace•••svn:r3757 Nick Mathewson2005-03-14
* Implement the common case of ATTACHSTREAM.•••svn:r3751 Nick Mathewson2005-03-12
* Revise all calls to connection_edge_end to avoid sending MISC, and to take er...•••svn:r3720 Nick Mathewson2005-03-01
* Forward-port new reasons; clean up code more; add code to convert new reasons...•••svn:r3719 Nick Mathewson2005-03-01
* make control interface stream IDs monotonically increasing to prevent possibl...•••svn:r3715 Nick Mathewson2005-03-01
* Try a little harder to avoid openssl SSL* double-free reports.•••svn:r3710 Nick Mathewson2005-02-28
* Check returns from libevent calls better; stop poking at internals of events ...•••svn:r3691 Nick Mathewson2005-02-25
* Insert missing ! in assert_connection_ok; test was accidentally reversed in r...•••svn:r3685 Nick Mathewson2005-02-24
* Clarify comment. Use CONN_IS_EDGE more. Try to be more zealous about calling ...•••svn:r3671 Nick Mathewson2005-02-23
* Change from inet_ntoa to a threadproof tor_inet_ntoa.•••svn:r3656 Nick Mathewson2005-02-22
* After we successfully connect, try handling pending stuff immediately, rather...•••svn:r3647 Nick Mathewson2005-02-22
* forward-port some fixes•••svn:r3631 Roger Dingledine2005-02-17
* when a client asks us for a dir mirror and we don't have one,•••launch an attempt to get a fresh one. svn:r3609 Roger Dingledine2005-02-10
* remove redundant lines•••svn:r3607 Roger Dingledine2005-02-09
* Patch from adam langley: always remove sockets from libevent before closing t...•••svn:r3606 Nick Mathewson2005-02-09
* fix the latest bug: don't explode when some router declares a•••bandwidthburst of 500 gigabytes. this bug seems to have taken down most of the network. oops. svn:r3523 Roger Dingledine2005-02-03
* define TOR_FRAGILE if you want tor to give you a core when•••something goes wrong. this should only be used by people actively tracking bugs. svn:r3487 Roger Dingledine2005-02-01
* don't double-detach a closing exit conn that's waiting for dns resolve•••svn:r3477 Roger Dingledine2005-01-31
* but don't spring the trip on worker children, because it turns•••out they don't actually remove anything before freeing the conns. svn:r3476 Roger Dingledine2005-01-31
* lay a trap for situations where we connection_free something•••that's still on one of the lists. in particular, this will detect situations where we mark-for-close and then free it ourselves. svn:r3475 Roger Dingledine2005-01-31
* Handle unavailable hidden services better. We try each intro point•••until none are left, then we try to refetch the descriptor. If it's the same one we had before, then close streams right then. Whenever a new stream arrives, even if it's right after, optimistically try refetching the descriptor, just in case. svn:r3379 Roger Dingledine2005-01-19
* fix another integer underflow caused by buckets going negative•••svn:r3346 Roger Dingledine2005-01-12
* tolerate bandwidtch buckets going negative (i hope)•••svn:r3344 Roger Dingledine2005-01-12
* Make Tor use Niels Provos's libevent instead of it's current•••poll-but-sometimes-select mess. This will let us use faster async cores (like epoll, kpoll, and /dev/poll), and hopefully work better on Windows too. There are some fairly nasty changes to main.c here; this will almost certainly break something. But hey, that's what alphas are for. svn:r3341 Nick Mathewson2005-01-12
* Split mark-dir-failed-and-retry logic into separate function; make it retry r...•••svn:r3256 Nick Mathewson2005-01-03
* Make directory fail-and-retry logic happen in connection_about_to_close(); fi...•••svn:r3253 Nick Mathewson2005-01-03
* respond to an 009 XXX•••svn:r3201 Roger Dingledine2004-12-22
* clean up logging,•••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 Roger Dingledine2004-12-13
* fix the other half of the pipe race•••svn:r3111 Roger Dingledine2004-12-07
* Now we allow writing to the buffer even when the stream if marked for•••close, if we're planning to wait to flush it. This is important because we were sending a socks reject back if we're closing and hadn't already sent one, but it wasn't actually getting written since the conn was already marked-for-close. svn:r3074 Roger Dingledine2004-12-04
* one more typo•••svn:r3054 Roger Dingledine2004-12-01
* Spell-check strings and comments•••svn:r3052 Nick Mathewson2004-12-01
* If we are using select, make sure we stay within FD_SETSIZE.•••svn:r3051 Nick Mathewson2004-12-01
* Suggestion from weasel: Make tor --version --version dump the cvs Id of every...•••svn:r3019 Nick Mathewson2004-11-29
* put in initial support for ".nickname.exit" addresses, to let alice•••decide what exit node to use; based on a patch by geoff goodell. needs more work: e.g. it goes bananas building new circuits when the chosen exit node's exit policy rejects the connection. svn:r3015 Roger Dingledine2004-11-29
* wrong is ok, and right is fine, but in between is apparently•••totally unacceptable to me. svn:r3005 Roger Dingledine2004-11-28
* Normalize space: add one between every control keyword and control clause.•••svn:r3003 Nick Mathewson2004-11-28
* remember; tor_socket_errno has side effects!•••svn:r2997 Nick Mathewson2004-11-28
* remove emacs droppings, since nick says he doesn't need them anymore•••svn:r2989 Roger Dingledine2004-11-26
* update conn_state_to_string•••svn:r2979 Roger Dingledine2004-11-24
* don't process marked-for-close conns further.•••(fix assert trigger -- if we're lucky.) svn:r2975 Roger Dingledine2004-11-24
* Fix sign-related warnings•••svn:r2942 Nick Mathewson2004-11-22
* Compile cleanly on windows; prevent some insane bandwidth cases (e.g., "Bandw...•••svn:r2941 Nick Mathewson2004-11-22