Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-12-13 | clean up some copyrights | Roger Dingledine | |
svn:r907 | |||
2003-12-13 | bughunt: start tracking the bug mutiny found | Roger Dingledine | |
svn:r906 | |||
2003-12-13 | bugfix: a circuit that immediately failed still counts as a failed circuit | Roger Dingledine | |
svn:r905 | |||
2003-12-13 | revamp circuit node selection to use smartlists: | Roger Dingledine | |
* now we know for sure if an acceptable node is available; we don't have to keep guessing and checking * we try options.EntryNodes first for picking the first node svn:r904 | |||
2003-12-13 | minor tweaks to the smartlist operations | Roger Dingledine | |
svn:r903 | |||
2003-12-13 | Make default exit policy reject 127.*:* | Nick Mathewson | |
svn:r902 | |||
2003-12-13 | reasonably permissive exit policy if you don't set one | Roger Dingledine | |
svn:r901 | |||
2003-12-13 | put the default exit policy in place | Roger Dingledine | |
svn:r900 | |||
2003-12-13 | Add port ranges to exit policies | Nick Mathewson | |
svn:r899 | |||
2003-12-13 | use the smartlist to pick random routers, rather than our own idiom | Roger Dingledine | |
svn:r898 | |||
2003-12-13 | add a 'smartlist' building block that picks random elements from a list | Roger Dingledine | |
svn:r897 | |||
2003-12-12 | if >=2 circs are being built that handle a given stream, | Roger Dingledine | |
no need to have new circs handle it too. svn:r896 | |||
2003-12-09 | make the license explicit on fakepoll.[ch] | Roger Dingledine | |
svn:r895 | |||
2003-12-09 | Document parsing functions in routerlist.c, and separate parsing from ↵ | Nick Mathewson | |
non-parsing functions. svn:r894 | |||
2003-12-09 | close the circuit when we get a truncated cell | Roger Dingledine | |
svn:r893 | |||
2003-12-09 | our circuit symmetric key (for aes) is 127 bits, not 128 bits. | Roger Dingledine | |
we accept that. svn:r892 | |||
2003-12-09 | back out the broken change from yesterday | Roger Dingledine | |
svn:r891 | |||
2003-12-08 | Make router/directory parsing nondestructive and more const-friendly | Nick Mathewson | |
svn:r890 | |||
2003-12-07 | general cleanups | Roger Dingledine | |
svn:r889 | |||
2003-12-06 | declare the prototypes better | Roger Dingledine | |
svn:r888 | |||
2003-12-06 | break routers.c into router.c for stuff the router does, | Roger Dingledine | |
and routerlist.c for handling routerlist. svn:r887 | |||
2003-12-05 | terminology shift: | Roger Dingledine | |
directory is the string that dirserv.c and directory.c deal with routerlist is routerinfo's that are bundled together in routers.c rename some of the get_routerlist functions to set_routerlist preparing to break into router.c for stuff the router does, and routerlist.c for handling routerlist. svn:r886 | |||
2003-12-03 | prevent assert failure on -HUP when options->PidFile==NULL | Roger Dingledine | |
svn:r885 | |||
2003-12-03 | OnionRouter config option is obsolete | Roger Dingledine | |
svn:r883 | |||
2003-12-03 | choose randomly from running dirservers, not always the first one | Roger Dingledine | |
svn:r881 | |||
2003-12-03 | pick nodes for a circuit only from those the directory says are up | Roger Dingledine | |
svn:r880 | |||
2003-12-03 | stop segfault when choose_good_exit_server returns NULL | Roger Dingledine | |
svn:r879 | |||
2003-12-03 | fix vicious bug in connection_ap_attach_pending that caused it to | Roger Dingledine | |
never work. fix vicious bug in choose_good_exit_server that caused it to *skip over* pending circuits, and look only at *non-pending circuits*, when choosing a good exit node for the new circuit. bugfix: remove incorrect asserts in circuit_get_newest() svn:r876 | |||
2003-12-03 | assert that nobody asks for a random number between 0 and -1 | Roger Dingledine | |
svn:r875 | |||
2003-12-03 | bugfix in exit node choice: we used to find the perfect exit node but ↵ | Roger Dingledine | |
then use the wrong one. bugfix in connection_ap_can_use_exit: it was using the wrong port bugfix: the OP now handles a port of '*' correctly when the IP is not yet known and it's trying to guess whether a router's exit policy might accept it. we now don't ever pick exit routers which will reject *:* attach_circuit now fails a new stream outright if it will never work. when you get an 'end' cell that resolves an IP, now it will fail the circuit outright if no safe exit nodes exist for that IP. don't try building a new circuit after an 'end' if a suitable one is already on the way. svn:r874 | |||
2003-12-02 | stop expecting sample-server-torrc to be there | Roger Dingledine | |
svn:r873 | |||
2003-11-30 | start tracking a rare bug: package_raw_inbuf gets called with package_window 0 | Roger Dingledine | |
Nov 25 22:39:18.294 [warn] connection_edge_package_raw_inbuf(): called with package_window 0. T ell Roger. svn:r870 | |||
2003-11-30 | stop complaining as loudly when a dns resolve fails | Roger Dingledine | |
svn:r869 | |||
2003-11-30 | bugfix: we were writing to stderr even when it's closed | Roger Dingledine | |
svn:r868 | |||
2003-11-30 | bump up header length when the dirserv reads http commands | Roger Dingledine | |
Nov 23 12:10:26.556 [warn] fetch_from_buf_http(): headerlen 1487 larger than 1023. Failing. Nov 23 12:10:26.556 [warn] directory_handle_command(): input too large. Failing. svn:r867 | |||
2003-11-30 | remove a conn_close_if_marked warning | Roger Dingledine | |
Nov 27 15:45:19.003 [warn] connection_write_to_buf(): write_to_buf failed. Closing connection (fd 42). Nov 27 15:45:19.010 [warn] conn_close_if_marked(): Conn (socket 42) still wants to flush. Losing 0 bytes! svn:r866 | |||
2003-11-29 | bugfix: an offline OP would leak all its sockets and stop working | Roger Dingledine | |
svn:r865 | |||
2003-11-23 | Fix a few bugs in sending and receiving DNS results | Nick Mathewson | |
svn:r864 | |||
2003-11-23 | Bring assert_connection_ok up to date | Nick Mathewson | |
svn:r863 | |||
2003-11-21 | Fix incorrect error message | Nick Mathewson | |
svn:r862 | |||
2003-11-20 | merge torrc.in and sample-server-torrc.in | Roger Dingledine | |
svn:r858 | |||
2003-11-20 | simplify: options.OnionRouter==1 iff options.ORPort>0 | Roger Dingledine | |
svn:r857 | |||
2003-11-19 | default log level is now warn | Roger Dingledine | |
(info is too noisy) svn:r855 | |||
2003-11-19 | make pidfile default to null rather than writing to your cwd | Roger Dingledine | |
svn:r853 | |||
2003-11-19 | if you tell people that IgnoreVersion exists, | Roger Dingledine | |
some of them will use it rather than upgrade. svn:r852 | |||
2003-11-19 | bugfix and cleanups | Roger Dingledine | |
svn:r848 | |||
2003-11-19 | Separate failure-count tracking from circuit-launching. | Nick Mathewson | |
Increment failure counts only when circuits close without having been built. Reset failure counts only on the second, and when circuits are done building. svn:r847 | |||
2003-11-19 | Check that we can write to the logfile and log a warning to stderr if we can't | Peter Palfrader | |
Move writing of pidfile after daemonizing, and also after setting the [ug]id: This means that the tor user needs write priviliges to the pidfile location. It needs it for unlinking the pidfile anyway. svn:r846 | |||
2003-11-19 | Patch last patch to last patch | Nick Mathewson | |
svn:r845 | |||
2003-11-19 | removed unused variable; silence warning | Nick Mathewson | |
svn:r844 |