Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-08-25 | remove bandwidth negotation from the code | Roger Dingledine | |
we still use bandwidth on a per-connection basis for rate limiting. but it's unclear if we need this infrastructure in addition to the total-bandwidth rate limiting that we also do. i'll leave both infrastructures in, and we'll remove the per-connection one if it starts rotting too much. svn:r413 | |||
2003-08-25 | fix formatting in crypto.c for my sanity | Roger Dingledine | |
svn:r411 | |||
2003-08-25 | fix a mild memory leak (10 bytes each time an OR connected to an OR) | Roger Dingledine | |
svn:r410 | |||
2003-08-23 | start honoring the recommended_versions string | Roger Dingledine | |
your client exits if you're running a version not in the directory's list of acceptable versions (unless you have a config variable set to override). svn:r408 | |||
2003-08-23 | remove duplicate packagewindow-checking code, | Roger Dingledine | |
see if we can induce that segfault i just saw more often svn:r407 | |||
2003-08-20 | implemented cpuworkers | Roger Dingledine | |
please poke at it and report bugs still needs polishing, and only handles onions now (should handle OR handshakes too) svn:r402 | |||
2003-08-14 | include torint.h in 'make dist' | Roger Dingledine | |
svn:r401 | |||
2003-08-14 | Tor now builds on win32. | Nick Mathewson | |
svn:r400 | |||
2003-08-14 | Add empty statement to suppress gcc warning about label at end of compount ↵ | Nick Mathewson | |
statement svn:r399 | |||
2003-08-14 | Attempt to make sockets code work right on windows. | Nick Mathewson | |
svn:r398 | |||
2003-08-14 | start refactoring dnsworker so testing won't be so darn hard | Roger Dingledine | |
add NumCpus config variable in preparation for cpuworkers hardcode /etc/torrc path for config (simplifies win32 port) improve exit policy debugging during router entry parsing svn:r397 | |||
2003-08-13 | bugfix: if a dnsworker dies, remember that. | Roger Dingledine | |
svn:r396 | |||
2003-08-12 | Misc patches to make windows build work. Now everything is done except the ↵ | Nick Mathewson | |
sockets stuff svn:r393 | |||
2003-08-12 | Make windows happier still | Nick Mathewson | |
svn:r392 | |||
2003-08-12 | don't mess with signals on windows until we know how | Roger Dingledine | |
svn:r391 | |||
2003-08-12 | Stop trying to #include the world in util.c | Nick Mathewson | |
svn:r390 | |||
2003-08-12 | Adopt socketpair implementation from perl. For now, always use it. | Nick Mathewson | |
svn:r389 | |||
2003-08-12 | use the spawn_func / spawn_exit abstraction for dnsworkers | Roger Dingledine | |
svn:r388 | |||
2003-08-12 | Add abstraction for fork vs thread. | Nick Mathewson | |
svn:r387 | |||
2003-08-12 | Dont use explicit paths for orconfig.h -- it messes up the windows build | Nick Mathewson | |
svn:r386 | |||
2003-08-12 | reap exited dns/cpuworkers | Roger Dingledine | |
svn:r385 | |||
2003-08-12 | Reorder includes so that fakepoll.c gets built when it should | Nick Mathewson | |
svn:r384 | |||
2003-08-12 | we must have openssl, so HAVE_OPENSSL is redundant | Roger Dingledine | |
svn:r383 | |||
2003-08-12 | unbork windows line endings | Nick Mathewson | |
svn:r381 | |||
2003-08-12 | Start of port to win32. Missing are: | Nick Mathewson | |
- signal support - forking for DNS farm - changes for async IO - daemonizing In other words, some files still don't build, and the ones that do build, do nonblocking IO incorrectly. I'm also not checking in the project files till I have a good place for them. svn:r380 | |||
2003-08-11 | Work on systems with broken AC_CHECK_TYPE | Nick Mathewson | |
svn:r379 | |||
2003-08-11 | Who would have thought that some systems define intfoo_t, but not uintfoo_t? ↵ | Nick Mathewson | |
Cygwin is such a system. svn:r378 | |||
2003-08-11 | Cope better on platforms that define some of intFOO_t in sys/types.h or ↵ | Nick Mathewson | |
elsewhere svn:r377 | |||
2003-08-11 | autoconf around missing stdint.h | Nick Mathewson | |
svn:r376 | |||
2003-08-11 | better log output for debugging | Roger Dingledine | |
svn:r375 | |||
2003-08-11 | Fix typo: ports are 16 bits. | Nick Mathewson | |
svn:r374 | |||
2003-08-06 | patch to let poll() recognize eof on more architectures | Roger Dingledine | |
svn:r372 | |||
2003-07-30 | src/or | Nick Mathewson | |
svn:r371 | |||
2003-07-30 | Be smarter about getting key matter from DH. | Nick Mathewson | |
Formerly, once we had g^xy, we took the last N bytes from g^xy. Now, we take SHA(g^xy || [0]) || SHA1(g^xy || [1]) || ... , in order to use all bits from g^xy equally, and generate as much key material as we need. svn:r370 | |||
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 |