Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-07-08 | switch to aes | Roger Dingledine | |
nick: is this all there is to it? :) svn:r366 | |||
2003-07-05 | implemented total read rate limiting | Roger Dingledine | |
svn:r365 | |||
2003-07-05 | clean up main.c a bit | Roger Dingledine | |
svn:r364 | |||
2003-07-03 | fix many bugs in package_window handling | Roger Dingledine | |
svn:r363 | |||
2003-06-30 | Add AES counter-mode support to the crypt library | Nick Mathewson | |
svn:r362 | |||
2003-06-30 | Add a the public-domain AES implementation, with a minimal counter-mode wrapper. | Nick Mathewson | |
svn:r361 | |||
2003-06-28 | bugfix: a connection-level sendme cell would cause a connection to start | Roger Dingledine | |
packaging from its buffer, even if the circuit-level package-window was still 0. svn:r360 | |||
2003-06-27 | if stream ends before resolve finishes, inform resolver | Roger Dingledine | |
svn:r359 | |||
2003-06-26 | fix memleak in dump_signed_directory_to_string | Roger Dingledine | |
svn:r358 | |||
2003-06-25 | entries in the dns cache now expire | Roger Dingledine | |
(expiry time set to 100 seconds so we can play with it) exit connections are now informed when pending resolves fail we kill off the oldest busy worker when we're under attack and need to resolve something new svn:r356 | |||
2003-06-25 | clean up sev_to_string hack in log.c | Roger Dingledine | |
svn:r355 | |||
2003-06-25 | simplify fetch_from_buf; cull idle dnsworkers. | Roger Dingledine | |
svn:r354 | |||
2003-06-24 | non-buggy robustness, even | Roger Dingledine | |
svn:r353 | |||
2003-06-24 | improve robustness: connection_get_by_* ignores conns marked for close | Roger Dingledine | |
svn:r352 | |||
2003-06-24 | clean up a broken comment in crypto.c | Roger Dingledine | |
svn:r351 | |||
2003-06-24 | correct log()'s comment | Roger Dingledine | |
svn:r350 | |||
2003-06-24 | slightly happier on 64-bit archs | Roger Dingledine | |
svn:r349 | |||
2003-06-24 | clean out some old comments | Roger Dingledine | |
svn:r348 | |||
2003-06-24 | a pointer to async-dns alternatives. | Roger Dingledine | |
apparently glibc 2.2.4 and windows both have async gethostbynames now. we'll want to make use of them if they're available (via autoconf). svn:r347 | |||
2003-06-21 | My copy of cpp is not DWIM-compliant; I guess, as a workaround, I should ↵ | Nick Mathewson | |
define constants before using them. svn:r343 | |||
2003-06-21 | Reorder connection_or and make unexported functions static. Partially ↵ | Nick Mathewson | |
convert to symbolic constants -- Roger, was this what you had in mind? svn:r342 | |||
2003-06-21 | Make cvsignores reflect build process | Nick Mathewson | |
svn:r341 | |||
2003-06-21 | Remove false warnings from printf checks | Nick Mathewson | |
svn:r340 | |||
2003-06-20 | Fix a bug where we'd sometimes run off the end of an array while | Nick Mathewson | |
testing stream encryption. svn:r339 | |||
2003-06-18 | fix typos, streamline | Roger Dingledine | |
svn:r337 | |||
2003-06-18 | remove obsolete ss.h | Roger Dingledine | |
svn:r336 | |||
2003-06-18 | question for nick about daemonizing | Roger Dingledine | |
svn:r334 | |||
2003-06-17 | Change many files to new log_fn format | Nick Mathewson | |
svn:r333 | |||
2003-06-17 | Have GCC catch errors in format strings | Nick Mathewson | |
svn:r332 | |||
2003-06-17 | Come up with a less macro-happy, even more portable log_fn implementation | Nick Mathewson | |
svn:r331 | |||
2003-06-17 | Make log_fn work on apples with no workarounds needed in main code | Nick Mathewson | |
svn:r330 | |||
2003-06-17 | Make sure crypt_seed_rng succeeds | Nick Mathewson | |
svn:r329 | |||
2003-06-17 | Use fread instead of fgets for binary data | Nick Mathewson | |
svn:r328 | |||
2003-06-17 | overhaul the dns farm: cut its size in half | Roger Dingledine | |
i've eliminated the master dns process, so now the workers just act like regular connections and are handled by the normal pollarray. everything seems to still work. ;) svn:r327 | |||
2003-06-14 | Dont test handshakes in an infinite loop | Nick Mathewson | |
svn:r324 | |||
2003-06-14 | When debugging, dump key material | Nick Mathewson | |
svn:r323 | |||
2003-06-14 | Fix the periodic bug that would make handshaking fail. | Nick Mathewson | |
The culprit: sometimes DH_calculate_key returns less than DH_KEY_LEN bytes; we needed to check the return value. svn:r322 | |||
2003-06-14 | Do not use pseudorandom nonces | Nick Mathewson | |
svn:r321 | |||
2003-06-14 | Fix MacOS build | Nick Mathewson | |
svn:r320 | |||
2003-06-13 | Better test messages for onion skin bug | Nick Mathewson | |
svn:r319 | |||
2003-06-13 | Add RNG seeding | Nick Mathewson | |
svn:r318 | |||
2003-06-13 | remove on-the-fly compression feature | Roger Dingledine | |
it wasn't working, and it was harder than we'd anticipated not worth it. svn:r316 | |||
2003-06-13 | relay queues are obsolete (woo!) | Roger Dingledine | |
they used to be used for * queueing relay cells at the edge of the network, when windows are empty * queueing relay cells that arrive after an onion but before the onion has been processed. both of these uses are gone. so out they go. svn:r315 | |||
2003-06-13 | improve portability: inet_aton is missing on solaris | Roger Dingledine | |
svn:r314 | |||
2003-06-13 | send truncates AP-ward in a circuit, not destroys | Roger Dingledine | |
svn:r313 | |||
2003-06-12 | implement truncate and truncated (untested) | Roger Dingledine | |
clean up circuit_deliver_relay_cell convention svn:r312 | |||
2003-06-10 | don't complain as much when using openssl 0.9.7a | Roger Dingledine | |
svn:r308 | |||
2003-06-02 | Answer question about eliminating symmetric encryption from onion skins | Nick Mathewson | |
svn:r304 | |||
2003-06-01 | bugfix: it was expiring circuits that still had active connections | Roger Dingledine | |
svn:r303 | |||
2003-05-28 | update config files to not use opport | Roger Dingledine | |
svn:r300 |