| Commit message (Expand) | Author | Age |
... | |
* | Docment or add DOCDOC comments to undocumented functions in src/or. Make fun...•••svn:r4411
| Nick Mathewson | 2005-06-11 |
* | flesh out the source file descriptions for doxygen•••svn:r4404
| Roger Dingledine | 2005-06-11 |
* | Change end-of-file NLNL convention. It turns out arma I and I agree.•••svn:r4382
| Nick Mathewson | 2005-06-09 |
* | New whitespace normalization rule: no blank line at EOF.•••svn:r4378
| Nick Mathewson | 2005-06-09 |
* | Remove extraneous newlines from libevent log messages. Backport candidate?•••svn:r4350
| Nick Mathewson | 2005-06-08 |
* | Adapt patch from Adam Langley: fix possible memory leak in tor_lookup_hostname•••svn:r4326
| Nick Mathewson | 2005-06-07 |
* | Possible bugfix for 151: backport candidate.•••svn:r4318
| Nick Mathewson | 2005-06-06 |
* | Implement --disable-threads•••svn:r4187
| Nick Mathewson | 2005-05-10 |
* | Make Tor compile with no warnings with gcc4.0 on OSX•••svn:r4184
| Nick Mathewson | 2005-05-07 |
* | fix a comment•••svn:r4157
| Roger Dingledine | 2005-05-02 |
* | clean up this TOR_FRAGILE business•••svn:r4116
| Roger Dingledine | 2005-04-26 |
* | Apparently, ASN1 failures are not treated as SSL connection errors, but are j...•••svn:r4098
| Nick Mathewson | 2005-04-23 |
* | LOG_ERR is for when you're planning to die.•••svn:r4087
| Roger Dingledine | 2005-04-23 |
* | Fix "JAP-client" hideous ASN1 bug, twice. (Fix1: check more thoroughly for TL...•••svn:r4085
| Nick Mathewson | 2005-04-23 |
* | Make libevent_logging_callback static.•••svn:r4058
| Nick Mathewson | 2005-04-08 |
* | Stop putting nodename in the Platform string of server descriptors.•••It doesn't actually help, and it is confusing/upsetting some people.
svn:r4037
| Roger Dingledine | 2005-04-06 |
* | bugfix: chdir to your datadirectory at the *end* of the•••daemonize process, not the beginning. this was a problem
because the first time you run tor, if your datadir isn't
there, and you have runasdaemon set to 1, it will try to
chdir to it before it tries to create it. oops.
svn:r4033
| Roger Dingledine | 2005-04-06 |
* | Revise control spec and implementation to allow all log messages to be sent t...•••svn:r4010
| Nick Mathewson | 2005-04-05 |
* | I hear the smart kinds compile before committing. Then they never miss parens•••svn:r3999
| Nick Mathewson | 2005-04-03 |
* | Make smartlist_string_remove consistent with smartlist_string•••svn:r3998
| Nick Mathewson | 2005-04-03 |
* | Add useful smartlist_string_remove function.•••svn:r3996
| Nick Mathewson | 2005-04-03 |
* | Fix unterminated comment•••svn:r3991
| Nick Mathewson | 2005-04-03 |
* | update copyright notices.•••svn:r3982
| Nick Mathewson | 2005-04-01 |
* | fix typo in earlier libevent mmessage suppress patch•••svn:r3950
| Nick Mathewson | 2005-04-01 |
* | Add code to suppress spurious libevent log msgs; use it to resolve bug 68.•••svn:r3948
| Nick Mathewson | 2005-04-01 |
* | Use recent libevent features when possible•••svn:r3940
| Nick Mathewson | 2005-04-01 |
* | Try to make crash-on-shutdown bug harder to trigger.•••svn:r3939
| Nick Mathewson | 2005-04-01 |
* | add a tor_tls_is_server method to remember if conn->tls•••was an initiator or a receiver
svn:r3931
| Roger Dingledine | 2005-03-31 |
* | remember some thoughts about using WSAStartup to learn•••how many sockets we get to use on win32.
svn:r3905
| Roger Dingledine | 2005-03-28 |
* | Fix a few more instances of memory not freed on exit (found by weasel).•••svn:r3830
| Nick Mathewson | 2005-03-23 |
* | bugfix: make smartlist_join_strings2 actually use the separator/terminator•••svn:r3805
| Roger Dingledine | 2005-03-22 |
* | Commit fixes for several pending tor core tasks: document all DOCDOCed functi...•••svn:r3769
| Nick Mathewson | 2005-03-17 |
* | Fix a fun windows bug: apparently windows stat wants paths not to end with sl...•••svn:r3766
| Nick Mathewson | 2005-03-16 |
* | Fix some more obscure compiler warnings•••svn:r3758
| Nick Mathewson | 2005-03-14 |
* | Renormalize whitespace•••svn:r3757
| Nick Mathewson | 2005-03-14 |
* | Finish implementing GETINFO; make it easy to query address maps.•••svn:r3732
| Nick Mathewson | 2005-03-03 |
* | Try a little harder to avoid openssl SSL* double-free reports.•••svn:r3710
| Nick Mathewson | 2005-02-28 |
* | Fix strmap_free to release memory actually held by the strmap.•••svn:r3708
| Nick Mathewson | 2005-02-28 |
* | give a better warning when tor points at an https server.•••svn:r3706
| Nick Mathewson | 2005-02-28 |
* | Be specific about which "illegal character" we just saw in the cert.•••svn:r3699
| Nick Mathewson | 2005-02-25 |
* | Implement more control spec functionality•••- Mapaddress
- Postdescriptor
- GetInfo on descriptors
Required changes elsewhere:
- Keep the most recent running_routers_t in the routerlist_t. That way we
can learn about new routers and remember whether we were last told that
they were up or down. Also enables more simplifications.
- Keep the signed descriptor inside routerinfo_t. This makes
descriptor_entry_t in dirservers.c unneeded.
- Rename AddressMap (the verb) to MapAddress. Keep AddressMap as a noun.
- Check addresses for plausibility before mapping them.
svn:r3696
| Nick Mathewson | 2005-02-25 |
* | Forward-port the trick to bump up ConnLimit as far as it can•••go, but not past MAXCONNECTIONS. Also throw away the FAKE_POLL
caveats since 0.1.0 doesn't need it any more.
svn:r3657
| Roger Dingledine | 2005-02-22 |
* | Change from inet_ntoa to a threadproof tor_inet_ntoa.•••svn:r3656
| Nick Mathewson | 2005-02-22 |
* | Note a non-bug in read_file_to_str as used. If we start to rely on it behavin...•••svn:r3655
| Nick Mathewson | 2005-02-22 |
* | But on windows, localtime and gmtime _are_ threadsafe.•••svn:r3654
| Nick Mathewson | 2005-02-22 |
* | Patch to localtime/gmtime handling: use the _r variants where available. Use...•••svn:r3653
| Nick Mathewson | 2005-02-22 |
* | Remove assumptions that maximum path length is anything like 1024. From comm...•••svn:r3652
| Nick Mathewson | 2005-02-22 |
* | remove spurious semicolons•••svn:r3650
| Nick Mathewson | 2005-02-22 |
* | Snarf some logic from python, adapted to our own needs, to handle gethostbyna...•••svn:r3649
| Nick Mathewson | 2005-02-22 |
* | Initial IRIX compatibility fixes: check for inttypes.h; check for platform ce...•••svn:r3648
| Nick Mathewson | 2005-02-22 |