aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection_edge.c
Commit message (Expand)AuthorAge
...
* r11694@catbus: nickm | 2007-02-07 13:25:01 -0500••• Fix patch for 9510: never call control_event_stream_status on an exit connection. Should fix assert() noticed by xiando. svn:r9514 Nick Mathewson2007-02-07
* r11673@catbus: nickm | 2007-02-06 14:40:07 -0500••• Report stream end events where a resolve succeeded or where we got a socks protocol error correctly, rather than calling both of them "INTERNAL". Turn ALREADY_SOCKS_REPLIED into a flag rather than a reason. This will help debug 367 part 2 a little. svn:r9511 Nick Mathewson2007-02-07
* r11672@catbus: nickm | 2007-02-06 14:16:56 -0500••• Fix third case of bug 367: make circuit get sent along with END_STREAM_REASON_DESTROY stream CLOSED events. svn:r9510 Nick Mathewson2007-02-07
* more changes. i'm all caught up now.•••svn:r9495 Roger Dingledine2007-02-06
* r11641@catbus: nickm | 2007-02-05 13:59:26 -0500••• Add a REMAP state to stream events so that controllers can learn exactly when the target address for a stream has changed. May help Vidalia resolve confusions related to bug 375. svn:r9484 Nick Mathewson2007-02-05
* r11629@catbus: nickm | 2007-02-02 15:06:17 -0500••• Removing the last DOCDOC comment hurt so much that I had to use Doxygen to identify undocumented macros and comments, and add 150 more DOCDOCs to point out where they were. Oops. Hey, kids! Fixing some of these could be your first Tor patch! svn:r9477 Nick Mathewson2007-02-02
* r12123@Kushana: nickm | 2007-02-02 13:57:42 -0500••• Resolve remaining DOCDOC comments. svn:r9476 Nick Mathewson2007-02-02
* If the socks handshake hasn't started, don't send a•••"DNS resolve socks failed" handshake reply; just close it. svn:r9437 Roger Dingledine2007-01-27
* r11552@catbus: nickm | 2007-01-27 03:55:02 -0500••• This one is a little tricky. Our BEGIN_DIR implementation has a problem: the dirserv conns will decide they can flush all their data immediately, since the edge_conns will read greedily. For our 0.1.2 workaround, we track which or_conn a bridged dirserv conn is attached to, and stop writing when its outbuf is too full, and start writing again when the or_conn's outbuf empties out a little. This requires a bit of pointer management. Let's hope it works. svn:r9432 Nick Mathewson2007-01-27
* r11500@catbus: nickm | 2007-01-25 10:37:11 -0500••• Fix argument types in printf: try to make buildbot happier. svn:r9403 Nick Mathewson2007-01-25
* more hints as arma tracks down a polipo bug•••svn:r9400 Roger Dingledine2007-01-24
* start tracking down a funny-looking log message•••svn:r9395 Roger Dingledine2007-01-24
* r11987@Kushana: nickm | 2007-01-19 14:57:28 -0500••• Implement SOCKS_BAD_HOSTNAME status event. Defer remaining status events. Clean up control-spec.txt a little, and fill in recommendations for events. svn:r9374 Nick Mathewson2007-01-19
* Expire socks connections if they spend too long waiting for the•••handshake to finish. Previously we would let them sit around for days, if the connecting application didn't close them either. Also take this opportunity to refactor a duplicate bit of circuituse.c. And change the semantics of SocksTimeout slightly, but I think it'll be ok. svn:r9350 Roger Dingledine2007-01-15
* r11938@Kushana: nickm | 2007-01-11 11:02:28 -0500••• Check addresses for rfc953-saneness at exit too, and give a PROTOCOL_WARN when they fail. Also provide a mechanism to override this, so blossom can have its @@##$$^.whatever.exit hostnames if it wants. svn:r9336 Nick Mathewson2007-01-11
* fix a bug i introduced in r9249; and more cleanups.•••svn:r9263 Roger Dingledine2007-01-04
* man page entries for TunnelDirConns and PreferTunneledDirConns•••and add a todo item for nick in case he gets bored :) svn:r9260 Roger Dingledine2007-01-04
* r11800@Kushana: nickm | 2007-01-02 16:46:45 -0500••• Remove an XXXX012 for which the answer is "not really." svn:r9244 Nick Mathewson2007-01-02
* r11749@Kushana: nickm | 2006-12-29 00:51:42 -0500••• Remove dead code; make targets of addressmap commands/configs use AllowNonRFC953Hostnames svn:r9211 Nick Mathewson2006-12-29
* r11736@Kushana: nickm | 2006-12-28 17:46:23 -0500••• Mark a pile of XXXX comments as targetted for 0.1.2: some because they look important, some because they look easy. svn:r9205 Nick Mathewson2006-12-29
* r11718@Kushana: nickm | 2006-12-26 16:57:44 -0500••• Add client-side caching for reverse DNS. svn:r9194 Nick Mathewson2006-12-26
* r11713@Kushana: nickm | 2006-12-24 22:42:08 -0500••• Better handling of internal addresses wrt X-Your-Address-Is (never believe them; never provide them.) Also, report something useful for X-Your-Address-Is with one-hop tunneled connections. svn:r9191 Nick Mathewson2006-12-25
* Take out the '5 second' timeout from the connection retry•••schedule. Now the first connect attempt will wait a full 10 seconds before switching to a new circuit. Perhaps this will help a lot. Based on observations from Mike Perry. svn:r9159 Roger Dingledine2006-12-20
* minor cleanups•••svn:r9158 Roger Dingledine2006-12-20
* r11645@Kushana: nickm | 2006-12-19 14:22:36 -0500••• Reject hostnames with invalid characters, in an attempt to catch more errors earlier. Add an option to disable this behavior. svn:r9156 Nick Mathewson2006-12-19
* Some more documentation and specs for CONNECT_DIR and BEGIN_DIR.•••Demand that BEGIN_DIR cells have an empty payload. svn:r9104 Roger Dingledine2006-12-13
* finish enabling begin-dir cells. require one-hop circs for•••socks-command-connect-dir streams, so we don't open new anonymity questions. svn:r9099 Roger Dingledine2006-12-13
* Infrastructure to test BEGIN_DIR cells.•••New socks command CONNECT_DIR. New config option TunnelDirConns that builds a circ ending at the directory server and delivers a BEGIN_DIR cell if it's running 0.1.2.2-alpha or later. We still need to make one-hop circs when appropriate, while making other conns avoid them. svn:r9098 Roger Dingledine2006-12-13
* a better fix. puts r8446 to bed.•••svn:r9096 Roger Dingledine2006-12-12
* some more cleanups and a bugfix on r9052•••svn:r9062 Roger Dingledine2006-12-10
* r9853@Kushana: nickm | 2006-12-04 00:02:03 -0500••• Patch from Fabian Keil: Fix return statement in get_pf_socket() svn:r9020 Nick Mathewson2006-12-04
* cleanups, bump to 0.1.2.4-alpha•••svn:r9015 Roger Dingledine2006-12-02
* r9561@Kushana: nickm | 2006-11-16 22:32:54 -0500••• Tweaks to test-connection patch: use ".noconnect" instead of ".test" (since there are lots of ways to test things). Use a regular sequence of STREAM events (NEW followed by CLOSED) instead of a new event type. Make the function that checks the address be static and use const and strcasecmpend properly. svn:r8959 Nick Mathewson2006-11-17
* r9560@Kushana: nickm | 2006-11-16 22:09:12 -0500••• Check in an implementation of "test" connections from Scott Squires: these connections immediately close upon reaching Tor. They're useful for apps that want to check whether they're talking to the same Tor as a given controller. (I'll be tweaking this a bit before I push.) svn:r8958 Nick Mathewson2006-11-17
* r9319@totoro: nickm | 2006-11-14 13:04:50 -0500••• Patch from Zajcev Evgeny to make natd work properly (we needed to allow extra characters after the port number). svn:r8952 Nick Mathewson2006-11-14
* r9309@totoro: nickm | 2006-11-13 19:05:41 -0500••• Whitespace fixes, and clean up code from last natd patch. svn:r8947 Nick Mathewson2006-11-14
* r9308@totoro: nickm | 2006-11-13 18:41:23 -0500••• Add support for (Free?)BSD's natd, which was an old way to let you have your firewall automatically redirect traffic. (Original patch from Zajcev Evgeny, updated for 0.1.2.x by tup.) svn:r8946 Nick Mathewson2006-11-14
* r9307@totoro: nickm | 2006-11-13 18:25:56 -0500••• Patch from tup based on patch from Zajcev Evgeny: Make TransPort work even when the server wants to talk before the client. svn:r8945 Nick Mathewson2006-11-14
* checkpoint some changes as i read diffs•••svn:r8780 Roger Dingledine2006-10-20
* r9307@Kushana: nickm | 2006-10-20 13:53:54 -0400••• Have connection_about_to_close use an end_reason field in edge_connection_t to tell what reason to tell the controller for closing the stream. Set end_reason in connection_edge_end, connection_mark_unattached_ap, and everwhere we set edge_has_sent_end. Add a changelog entry. svn:r8779 Nick Mathewson2006-10-20
* r9306@Kushana: nickm | 2006-10-20 13:27:43 -0400••• Enable reasons for stream events in all cases but CLOSED in about_to_close_connection. That one will take a little longer. svn:r8778 Nick Mathewson2006-10-20
* r9303@Kushana: nickm | 2006-10-20 12:07:34 -0400••• Start implementing reason extension for stream events to match the one one used by circuit events. (Not a complete implementation yet; actual reasons are not passed to control.c) svn:r8777 Nick Mathewson2006-10-20
* r9298@dhcp-18-188-67-85: nickm | 2006-10-20 11:25:07 -0400••• Weasel correctly notes that we should not discard the return value from connection_exit_begin_con. Right now, the return value is always discardable, so this does not actually cause a bug, but it might later. So fix it. svn:r8774 Nick Mathewson2006-10-20
* r9289@31-35-219: nickm | 2006-10-20 09:43:22 -0400••• Fix longstanding bug in connection_exit_begin_conn(): Since connection_edge_end() exits when the connection is unattached, we were never sending RELAY_END cells back for failed RELAY_BEGIN attempts. Fix this. This might make clients that were otherwise timing out either fail faster or retry faster, which is good news for us. svn:r8770 Nick Mathewson2006-10-20
* Security bugfixes:••• When the user sends a NEWNYM signal, clear the client-side DNS cache too. Otherwise we continue to act on previous information. svn:r8679 Roger Dingledine2006-10-09
* r8957@totoro: nickm | 2006-10-08 22:35:17 -0400••• The otherwise regrettable MIPSpro C compiler warns about values set but never used, and about mixing enums and ints; these are good warnings, and so should be fixed. This removes some dead code and some potential bugs. Thanks to pnx. svn:r8664 Nick Mathewson2006-10-09
* finish poking and prodding. i'm all happy now.•••svn:r8633 Roger Dingledine2006-10-07
* minor cleanups•••svn:r8622 Roger Dingledine2006-10-07
* checkpoint some cleanups•••svn:r8599 Roger Dingledine2006-10-05
* r8839@totoro: nickm | 2006-10-02 15:31:49 -0400••• Make a field longer to accomodate verbose nicknames; note that verbose nicknames will never reach this point. svn:r8583 Nick Mathewson2006-10-03