aboutsummaryrefslogtreecommitdiff
path: root/src/common
Commit message (Expand)AuthorAge
...
* make writing descs work•••svn:r492 Roger Dingledine2003-09-26
* Add code to parse fingerprint files and compare routers against fingerprint f...•••svn:r490 Nick Mathewson2003-09-26
* Bugfixes in crypto_pk_write_private_key_to_filename•••svn:r489 Nick Mathewson2003-09-26
* Refactor common file code into util.c; add published to descriptors•••svn:r487 Nick Mathewson2003-09-26
* various bugfixes and updates•••redo all the config files for the new format (we'll redo them again soon) fix (another! yuck) segfault in log_fn when input is too large tor_tls_context_new() returns -1 for error, not NULL fix segfault in check_conn_marked() on conn's that die during tls handshake make ORs also initialize conn from router when we're the receiving node make non-dirserver ORs upload descriptor to every dirserver on startup add our local address to the descriptor add Content-Length field to POST command revert the Content-Length search in fetch_from_buf_http() to previous code fix segfault in memmove in fetch_from_buf_http() raise maximum allowed headers/body size in directory.c svn:r484 Roger Dingledine2003-09-25
* Refactor buffers; implement descriptors.•••'buf_t' is now an opaque type defined in buffers.c . Router descriptors now include all keys; routers generate keys as needed on startup (in a newly defined "data directory"), and generate their own descriptors. Descriptors are now self-signed. Implementation is not complete: descriptors are never published; and upon receiving a descriptor, the directory doesn't do anything with it. At least "routers.or" and orkeygen are now obsolete, BTW. svn:r483 Nick Mathewson2003-09-25
* fix a segfault on truncated log lines•••svn:r473 Roger Dingledine2003-09-19
* More fine-grained logging messages on ZeroReturn/Syscall error cases•••svn:r467 Nick Mathewson2003-09-16
* Add backend support for multiple logfiles, including console logs.•••Also optimize logging by formatting messages in memory before sending them through stdio. (It turns out (according to gprof) that logging performance matters.) svn:r463 Nick Mathewson2003-09-16
* Cipher lists need to be colon separated. Also make initialization more bulle...•••svn:r459 Nick Mathewson2003-09-15
* Fix TLS error logging•••svn:r458 Nick Mathewson2003-09-15
* Log protocol errors•••svn:r457 Nick Mathewson2003-09-15
* fix the cpuworker circ-had-vanished bug (maybe)•••still several (many) tls-related bugs outstanding. svn:r454 Roger Dingledine2003-09-14
* Fix bugs in certificate generation and SSL context creation. Both seem to wo...•••svn:r447 Nick Mathewson2003-09-11
* Non-debugging messages are nice to log too•••svn:r444 Nick Mathewson2003-09-11
* Resolve XXXXs in tortls.c•••svn:r443 Nick Mathewson2003-09-11
* Simplify some code paths in TLS; cut down on memory leaks; use•••reasonable ciphers if not everyone has OpenSSL 0.9.7. svn:r442 Nick Mathewson2003-09-11
* fix typo that's been bugging me•••svn:r440 Roger Dingledine2003-09-11
* Add certificate verification functions•••svn:r438 Nick Mathewson2003-09-10
* Make crypto structures private to crypto.c•••svn:r437 Nick Mathewson2003-09-10
* Add prototypes for functions to check whether the peer certificate is•••valid (if it is present); and to get a public key from a peer certificate (in order to identify the peer). svn:r436 Nick Mathewson2003-09-10
* another wishlist function for the tls interface•••svn:r433 Roger Dingledine2003-09-08
* hide the global tls context inside tortls.c•••svn:r431 Roger Dingledine2003-09-08
* move variable declarations to top of function•••svn:r425 Roger Dingledine2003-09-05
* Add initial interfaces and code for TLS support. Interfaces are right; code ...•••svn:r424 Nick Mathewson2003-09-04
* fix formatting in crypto.c for my sanity•••svn:r411 Roger Dingledine2003-08-25
* implemented cpuworkers•••please poke at it and report bugs still needs polishing, and only handles onions now (should handle OR handshakes too) svn:r402 Roger Dingledine2003-08-20
* include torint.h in 'make dist'•••svn:r401 Roger Dingledine2003-08-14
* Tor now builds on win32.•••svn:r400 Nick Mathewson2003-08-14
* Attempt to make sockets code work right on windows.•••svn:r398 Nick Mathewson2003-08-14
* Make windows happier still•••svn:r392 Nick Mathewson2003-08-12
* Stop trying to #include the world in util.c•••svn:r390 Nick Mathewson2003-08-12
* Adopt socketpair implementation from perl. For now, always use it.•••svn:r389 Nick Mathewson2003-08-12
* Add abstraction for fork vs thread.•••svn:r387 Nick Mathewson2003-08-12
* Dont use explicit paths for orconfig.h -- it messes up the windows build•••svn:r386 Nick Mathewson2003-08-12
* Reorder includes so that fakepoll.c gets built when it should•••svn:r384 Nick Mathewson2003-08-12
* unbork windows line endings•••svn:r381 Nick Mathewson2003-08-12
* Start of port to win32. Missing are:••• - 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 Nick Mathewson2003-08-12
* Work on systems with broken AC_CHECK_TYPE•••svn:r379 Nick Mathewson2003-08-11
* Who would have thought that some systems define intfoo_t, but not uintfoo_t? ...•••svn:r378 Nick Mathewson2003-08-11
* Cope better on platforms that define some of intFOO_t in sys/types.h or elsew...•••svn:r377 Nick Mathewson2003-08-11
* autoconf around missing stdint.h•••svn:r376 Nick Mathewson2003-08-11
* Be smarter about getting key matter from DH.•••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 Nick Mathewson2003-07-30
* Add AES counter-mode support to the crypt library•••svn:r362 Nick Mathewson2003-06-30
* Add a the public-domain AES implementation, with a minimal counter-mode wrapper.•••svn:r361 Nick Mathewson2003-06-30
* clean up sev_to_string hack in log.c•••svn:r355 Roger Dingledine2003-06-25
* clean up a broken comment in crypto.c•••svn:r351 Roger Dingledine2003-06-24
* correct log()'s comment•••svn:r350 Roger Dingledine2003-06-24
* Make cvsignores reflect build process•••svn:r341 Nick Mathewson2003-06-21
* Remove false warnings from printf checks•••svn:r340 Nick Mathewson2003-06-21