aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Patch to localtime/gmtime handling: use the _r variants where available. ↵Nick Mathewson2005-02-22
| | | | | | Use mutexes to fake _r where necessary. Make mutexes no-ops where no threading is enabled. svn:r3653
* Remove assumptions that maximum path length is anything like 1024. From ↵Nick Mathewson2005-02-22
| | | | | | comments by Chris Palmer svn:r3652
* remove spurious semicolonsNick Mathewson2005-02-22
| | | | svn:r3650
* Snarf some logic from python, adapted to our own needs, to handle ↵Nick Mathewson2005-02-22
| | | | | | gethostbyname_r correctly across platforms. svn:r3649
* Initial IRIX compatibility fixes: check for inttypes.h; check for platform ↵Nick Mathewson2005-02-22
| | | | | | cell_t. svn:r3648
* After we successfully connect, try handling pending stuff immediately, ↵Nick Mathewson2005-02-22
| | | | | | rather than waiting for the next call to connection_handle_write. Roger: is this right? svn:r3647
* Print uname on start of unittests.Nick Mathewson2005-02-22
| | | | svn:r3646
* Fix windows build: juggle }s and #endifs around in main.cNick Mathewson2005-02-22
| | | | svn:r3645
* Fix windows build: do not spuriously include openssl where not needed; ↵Nick Mathewson2005-02-22
| | | | | | handle lack of gethostbyname_r properly. svn:r3644
* make the addressmap internals less noisyRoger Dingledine2005-02-22
| | | | svn:r3643
* Add a new AddressMap directive to rewrite incoming socks addresses.Roger Dingledine2005-02-22
| | | | | | | | | | Add a new TrackHostExits directive to trigger addressmaps for certain incoming socks addresses, for sites that break when your exit keeps changing. Redo the client-side dns cache so it's just an addressmap too. svn:r3641
* bugfix: actually use the argument to strmap_free()Roger Dingledine2005-02-20
| | | | svn:r3640
* forward-port the onion queue thingRoger Dingledine2005-02-20
| | | | svn:r3639
* avoid case (not yet triggered) where smartlists could grow outRoger Dingledine2005-02-19
| | | | | | | of control svn:r3636
* forward-port some fixesRoger Dingledine2005-02-17
| | | | svn:r3631
* remove unused codeRoger Dingledine2005-02-16
| | | | svn:r3629
* Fix another crash bug found by Jaroslaw--it is possible for dns_resolve to ↵Nick Mathewson2005-02-14
| | | | | | mark a connection to be freed, if the circuit it was attached to fails for some reason. svn:r3623
* Tell openssl how to use locks and how to find thread ids -- this may prevent ↵Nick Mathewson2005-02-13
| | | | | | race conditions surrounding the error queue. svn:r3622
* Add a missing prototype to or.hNick Mathewson2005-02-13
| | | | svn:r3621
* remove redundant unpack in critical pathNick Mathewson2005-02-13
| | | | svn:r3620
* Apply windows patch from Dmitri BelyNick Mathewson2005-02-12
| | | | svn:r3617
* Do not try to double-aquire lock when rotating keys. May fix deadlock bug ↵Nick Mathewson2005-02-11
| | | | | | found by weasel. svn:r3616
* Free tls resources on exit tooNick Mathewson2005-02-11
| | | | svn:r3615
* Free even more things on shutdown. Temporarily move tor_free_all out from ↵Nick Mathewson2005-02-11
| | | | | | #ifdef so it gets tested more. svn:r3614
* Add more functions to free things to help dmalloc allong.Nick Mathewson2005-02-10
| | | | svn:r3613
* if we're hibernating and we get a sigint, exit immediately.Roger Dingledine2005-02-10
| | | | | | | closes bug 91. svn:r3611
* stop picking unverified dir mirrors, ever.Roger Dingledine2005-02-10
| | | | | | | it only leads to misery. svn:r3610
* when a client asks us for a dir mirror and we don't have one,Roger Dingledine2005-02-10
| | | | | | | launch an attempt to get a fresh one. svn:r3609
* remove redundant linesRoger Dingledine2005-02-09
| | | | svn:r3607
* Patch from adam langley: always remove sockets from libevent before closing ↵Nick Mathewson2005-02-09
| | | | | | them. Should fix epoll-related bugs. svn:r3606
* don't list version in the win32 service display name or service name,Roger Dingledine2005-02-09
| | | | | | | | since they'll keep changing and people will get messed up about which one is installed. svn:r3592
* Avoid double-free on tor-resolve failureNick Mathewson2005-02-05
| | | | svn:r3567
* Re-normalize whitespace; make "make check-spaces" happyNick Mathewson2005-02-05
| | | | svn:r3566
* forward-port NT service patchNick Mathewson2005-02-05
| | | | svn:r3565
* Fix tor-resolve implementation to prevent crashes and send resolves when we ↵Nick Mathewson2005-02-05
| | | | | | should. svn:r3561
* forward-port the logic skew and double-free thingRoger Dingledine2005-02-04
| | | | svn:r3549
* Handle return value from getaddrinfo properlyNick Mathewson2005-02-03
| | | | svn:r3526
* fix the latest bug: don't explode when some router declares aRoger Dingledine2005-02-03
| | | | | | | | | bandwidthburst of 500 gigabytes. this bug seems to have taken down most of the network. oops. svn:r3523
* Use getaddrinfo and gethostbyname_r where available. Note that these are ↵Nick Mathewson2005-02-03
| | | | | | not necessarily threadsafe: this needs more thinking. Perhaps we should back down on this multithreading idea. svn:r3522
* Forward-port SGI Compatibility patches from Jan SchaumannNick Mathewson2005-02-03
| | | | svn:r3517
* point out a potential thread/process leak problem when we're out of memoryRoger Dingledine2005-02-03
| | | | svn:r3512
* another minor fixRoger Dingledine2005-02-03
| | | | svn:r3511
* Add --with-dmalloc configure optionPeter Palfrader2005-02-03
| | | | svn:r3508
* Write a function header for Roger so he can fill it with lifePeter Palfrader2005-02-03
| | | | svn:r3507
* http://www.erlenstar.demon.co.uk/unix/faq_2.html says weRoger Dingledine2005-02-03
| | | | | | | should call _exit, not exit, from child processes. svn:r3506
* note a bug that wmf just foundRoger Dingledine2005-02-02
| | | | svn:r3503
* bugfix: tor-resolve requests were ignoring .exit if there wasRoger Dingledine2005-02-02
| | | | | | | a working circuit they could use instead. svn:r3502
* reject more default filesharing ports by default.Roger Dingledine2005-02-02
| | | | svn:r3500
* only check if exit_policy_implicitly_allows if you're a server.Roger Dingledine2005-02-02
| | | | | | | also, put a comment next to an interesting undocumented 'feature'. svn:r3499
* sometimes, a conn on the closeable_lst gets absolutelyRoger Dingledine2005-02-02
| | | | | | | clobbered. maybe this will help me find out why. svn:r3498