aboutsummaryrefslogtreecommitdiff
path: root/src/or
Commit message (Expand)AuthorAge
* rename circ_id_t to uint16_t for code clarity•••change message when using non-recommended tor version svn:r954 Roger Dingledine2003-12-19
* make a relay_header_t struct and pack/unpack funcs•••split 7-byte stream_id string into 2-byte recognized and 2-byte stream_id fix two seg faults in fetch_from_buf_http fix several lurking seg faults in handling unexpected relay cells still need to * clean up relay_crypt * use relay dummies if there's going to be a conflict with rh.recognized * check for a conflict when generating stream_ids svn:r953 Roger Dingledine2003-12-19
* remove trailing whitespace•••svn:r951 Roger Dingledine2003-12-17
* make fetch_from_buf_http malloc its strings rather•••than use fixed-size strings reorganize directory_handle_command so it'll be easier to do more with our directory servers svn:r950 Roger Dingledine2003-12-17
* betcha didn't know strncpy could leave an unterminated string•••svn:r949 Roger Dingledine2003-12-17
* end-to-end integrity checking now works•••initialize digests from shared secrets at handshake make circuit_send_next_onion_skin use connection_edge_send_command svn:r948 Roger Dingledine2003-12-17
* infrastructure for integrity-checks in relay cells•••make circuit_consider_sending_sendme use connection_edge_send_command fix endian bug in relay length handling (maybe) svn:r946 Roger Dingledine2003-12-16
* resolve an edge case in get_unique_circ_id_by_conn•••svn:r944 Roger Dingledine2003-12-16
* move cell size to 512 bytes•••move length to 2 bytes, put it in the relay header remove 4 reserved bytes in cell add 4 bytes to relay header for the integrity check svn:r942 Roger Dingledine2003-12-16
* add H(K|1) to the onionskin reply•••verify it at the client end abstract the onionskin handshake lengths breaks backward compatibility (again) svn:r941 Roger Dingledine2003-12-16
* Resolve format warnings on MacOS X 10.3•••svn:r938 Nick Mathewson2003-12-16
* Make compile warning-free on cygwin•••svn:r936 Nick Mathewson2003-12-15
* make --debuglogfile (or any second log file) work•••svn:r935 Roger Dingledine2003-12-14
* start tracking the 'It appears I've already sent the end' warning•••svn:r932 Roger Dingledine2003-12-14
* oops, i broke buffers. fixed.•••svn:r931 Roger Dingledine2003-12-14
* document aborted attempt to merge client dns cache with server dns cache•••svn:r930 Roger Dingledine2003-12-14
* change dns notation from question/answer to address/addr•••svn:r929 Roger Dingledine2003-12-14
* start to track the 'unexpected relay cell' warning•••svn:r928 Roger Dingledine2003-12-14
* on hup, close and rebind listener ports too (in case their config has changed)•••svn:r926 Roger Dingledine2003-12-14
* clean up some file-scope-global directory variables•••svn:r925 Roger Dingledine2003-12-14
* add options.ExcludedNodes -- nodes that are never picked in path building•••svn:r924 Roger Dingledine2003-12-14
* warn if you're running tor as root•••svn:r921 Roger Dingledine2003-12-14
* on HUP, retry OR connections, and stop clobbering the dirserver's routerlist•••svn:r920 Roger Dingledine2003-12-14
* more friendly warning when there are too many dns workers•••svn:r919 Roger Dingledine2003-12-14
* more friendly warning when a connection buffer overflows•••svn:r918 Roger Dingledine2003-12-14
* slightly different default default exit policy.•••svn:r917 Roger Dingledine2003-12-14
* more general cleanup•••svn:r915 Roger Dingledine2003-12-14
* Accept 1.2.3.4/x as a synonym for 1.2.3.4/x:* .•••svn:r912 Nick Mathewson2003-12-14
* make options.ExitNodes work•••if your best choices happen to include any of your preferred exit nodes, you choose among just those preferred exit nodes. svn:r911 Roger Dingledine2003-12-13
* clean up some copyrights•••svn:r907 Roger Dingledine2003-12-13
* bughunt: start tracking the bug mutiny found•••svn:r906 Roger Dingledine2003-12-13
* bugfix: a circuit that immediately failed still counts as a failed circuit•••svn:r905 Roger Dingledine2003-12-13
* revamp circuit node selection to use smartlists:••• * 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 Roger Dingledine2003-12-13
* Make default exit policy reject 127.*:*•••svn:r902 Nick Mathewson2003-12-13
* reasonably permissive exit policy if you don't set one•••svn:r901 Roger Dingledine2003-12-13
* Add port ranges to exit policies•••svn:r899 Nick Mathewson2003-12-13
* use the smartlist to pick random routers, rather than our own idiom•••svn:r898 Roger Dingledine2003-12-13
* if >=2 circs are being built that handle a given stream,•••no need to have new circs handle it too. svn:r896 Roger Dingledine2003-12-12
* Document parsing functions in routerlist.c, and separate parsing from non-par...•••svn:r894 Nick Mathewson2003-12-09
* close the circuit when we get a truncated cell•••svn:r893 Roger Dingledine2003-12-09
* our circuit symmetric key (for aes) is 127 bits, not 128 bits.•••we accept that. svn:r892 Roger Dingledine2003-12-09
* back out the broken change from yesterday•••svn:r891 Roger Dingledine2003-12-09
* Make router/directory parsing nondestructive and more const-friendly•••svn:r890 Nick Mathewson2003-12-08
* general cleanups•••svn:r889 Roger Dingledine2003-12-07
* declare the prototypes better•••svn:r888 Roger Dingledine2003-12-06
* break routers.c into router.c for stuff the router does,•••and routerlist.c for handling routerlist. svn:r887 Roger Dingledine2003-12-06
* terminology shift:•••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 Roger Dingledine2003-12-05
* prevent assert failure on -HUP when options->PidFile==NULL•••svn:r885 Roger Dingledine2003-12-03
* choose randomly from running dirservers, not always the first one•••svn:r881 Roger Dingledine2003-12-03
* pick nodes for a circuit only from those the directory says are up•••svn:r880 Roger Dingledine2003-12-03