Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-09-26 | new config files, including directory servers | Roger Dingledine | |
svn:r115 | |||
2002-09-26 | stop duplicate free | Roger Dingledine | |
svn:r114 | |||
2002-09-26 | dirserver should include itself in the directory | Roger Dingledine | |
if connecting to a dirserver fails, remove it from the router array svn:r113 | |||
2002-09-26 | directory servers in and functional | Roger Dingledine | |
proxies now periodically pull down an hourly-updated directory, and replace their router list with it if it parses correctly. svn:r112 | |||
2002-09-26 | another bugfix on the proxy side | Roger Dingledine | |
should be more reliable now (?) svn:r111 | |||
2002-09-24 | laying the groundwork for dynamic router lists | Roger Dingledine | |
revamped the router reading section reference counting for crypto pk env's (so we can dup them) we now read and write pem pk keys from string rather than from FILE*, in anticipation of fetching directories over a socket (so now on startup we slurp in the whole file, then parse it as a string) fixed a bug in the proxy side, where you could get some circuits wedged if they showed up while the connection was being made svn:r110 | |||
2002-09-23 | more robust when only some of the socks info has arrived | Roger Dingledine | |
svn:r108 | |||
2002-09-22 | onion proxy now speaks socks4a | Roger Dingledine | |
httpap is obsolete; we support privoxy directly now! smtpap is obsolete; need to find a good socks4a-enabled smtp proxy/client I dub thee 0.0.1. svn:r107 | |||
2002-09-21 | kill -USR1 the or and it will dump conn/circuit stats to stdout | Roger Dingledine | |
svn:r106 | |||
2002-09-20 | OP was hanging on first try if connect finishes too quickly | Roger Dingledine | |
svn:r105 | |||
2002-09-19 | synchronize to the version i've been giving people to test | Roger Dingledine | |
svn:r104 | |||
2002-09-17 | added 'connected' cell type | Roger Dingledine | |
see http://archives.seul.org/or/dev/Sep-2002/msg00018.html svn:r103 | |||
2002-09-10 | "You got BSD in my MacOS!" "You got MacOS in my BSD!" Anyway, MacOS works again. | Nick Mathewson | |
svn:r102 | |||
2002-09-09 | port to actual BSD | Roger Dingledine | |
(hey nick, does this break the os x build?) you still need to add some stuff to the ./configure commandline... anybody know a better solution? svn:r101 | |||
2002-09-09 | minor race condition | Roger Dingledine | |
(it seemed to work anyway, but...) svn:r100 | |||
2002-09-05 | slight optimization on rsa exponent | Roger Dingledine | |
use 2**16+1 rather than 2**16 + 2**(-1) svn:r99 | |||
2002-09-04 | an rc file for an onion proxy | Roger Dingledine | |
svn:r97 | |||
2002-09-04 | onion proxies now work (i think) | Roger Dingledine | |
svn:r96 | |||
2002-09-04 | fixed the killer bug with onion proxies | Roger Dingledine | |
svn:r95 | |||
2002-09-04 | the logs now include a timestamp and severity | Roger Dingledine | |
the implementation is sort of a kludge..you're welcome to fix it up svn:r94 | |||
2002-09-03 | changed my mind, sort of | Roger Dingledine | |
the package is tor, the binary is or. and i added our project plan to the todo file. svn:r93 | |||
2002-09-03 | Our program is now called 'tor', not 'or'. | Roger Dingledine | |
svn:r92 | |||
2002-09-03 | Backport to OpenSSL version 0.9.5 | Nick Mathewson | |
svn:r91 | |||
2002-09-03 | clarifying the empty semicolon | Roger Dingledine | |
svn:r90 | |||
2002-09-03 | resolve warnings | Roger Dingledine | |
svn:r89 | |||
2002-09-03 | Port to MacOS X | Nick Mathewson | |
svn:r88 | |||
2002-09-03 | Add function to fake a poll call using select | Nick Mathewson | |
svn:r87 | |||
2002-09-03 | enforce maxconn; bugfix to not tear down the parent when we hit maxconn | Roger Dingledine | |
svn:r86 | |||
2002-08-27 | more debugging info, to track down bruce's IP problems | Roger Dingledine | |
svn:r85 | |||
2002-08-24 | we now encrypt the entire cell on the link, not just the header | Roger Dingledine | |
previously padding cells, etc were distinguishable because their body was all zero's svn:r84 | |||
2002-08-24 | proxies send port in host order as ascii string | Roger Dingledine | |
svn:r83 | |||
2002-08-24 | port is now kept in host order except in sin_port | Roger Dingledine | |
svn:r82 | |||
2002-08-24 | cleanup: start enforcing hton and ntoh on stuff sent over the network | Roger Dingledine | |
this is a checkpoint before i fix the fact that port is always kept in network order -- which makes no sense, because network order is different on different machines, which is the whole point. svn:r81 | |||
2002-08-24 | cleanup: don't use size_t when you mean int | Roger Dingledine | |
size_t is what you get back from sizeof(). no more, no less. svn:r80 | |||
2002-08-23 | linkpadding is now off by default. | Roger Dingledine | |
svn:r79 | |||
2002-08-23 | changed path selection so it's actually random again | Roger Dingledine | |
svn:r78 | |||
2002-08-23 | cleaned up new_route() | Roger Dingledine | |
now it deals gracefully with too few connected routers (i think) svn:r77 | |||
2002-08-22 | Changed crypto calls to go through common/crypto.[hc] instead of calling ↵ | Matej Pjafjar | |
OpenSSL directly. svn:r76 | |||
2002-07-25 | Updated to use crypto.h instead of OpenSSL. | Matej Pjafjar | |
svn:r75 | |||
2002-07-25 | Added the crypto abstraction to libor. Need to test and change the code to ↵ | Matej Pjafjar | |
use this instead of OpenSSL. svn:r74 | |||
2002-07-24 | Beginnings of a crypto abstraction layer. | Matej Pjafjar | |
svn:r73 | |||
2002-07-22 | only choose routers for the onion that are currently connected to us | Roger Dingledine | |
svn:r72 | |||
2002-07-22 | Code cleaned up to be less noisy | Roger Dingledine | |
svn:r71 | |||
2002-07-22 | More reasonable CoinWeight, now that we can handle large paths | Roger Dingledine | |
svn:r70 | |||
2002-07-22 | Include src/config/ in the 'make dist' tarball | Roger Dingledine | |
svn:r69 | |||
2002-07-20 | bugfixes: don't hang waiting for new children to die; accept HTTP/1.1 | Roger Dingledine | |
svn:r67 | |||
2002-07-20 | bugfix: create_onion now works with routelen>2 | Roger Dingledine | |
svn:r66 | |||
2002-07-19 | Folded cell.? into src/or | Roger Dingledine | |
svn:r64 | |||
2002-07-19 | slightly less noisy | Roger Dingledine | |
svn:r63 | |||
2002-07-19 | minor cleanups in config files | Roger Dingledine | |
svn:r62 |