- 03 Apr, 2010 1 commit
-
-
Sebastian Hahn authored
We need to make sure we have an event_base in dns.c before we call anything that wants one. Make sure we always have one in dns_reset() when we're a client. Fixes bug 1341.
-
- 27 Feb, 2010 1 commit
-
-
Nick Mathewson authored
-
- 15 Feb, 2010 1 commit
-
-
Nick Mathewson authored
-
- 09 Feb, 2010 1 commit
-
-
Nick Mathewson authored
The src and dest of a memcpy() call aren't supposed to overlap, but we were sometimes calling tor_addr_copy() as a no-op. Also, tor_addr_assign was a redundant copy of tor_addr_copy(); this patch removes it.
-
- 15 Dec, 2009 1 commit
-
-
Nick Mathewson authored
The new rule is: safe_str_X() means "this string is a piece of X information; make it safe to log." safe_str() on its own means "this string is a piece of who-knows-what; make it safe to log".
-
- 13 Dec, 2009 1 commit
-
-
Nick Mathewson authored
This changes the pqueue API by requiring an additional int in every structure that we store in a pqueue to hold the index of that structure within the heap.
-
- 12 Dec, 2009 3 commits
-
-
Nick Mathewson authored
-
Sebastian Hahn authored
Some *_free functions threw asserts when passed NULL. Now all of them accept NULL as input and perform no action when called that way. This gains us consistence for our free functions, and allows some code simplifications where an explicit null check is no longer necessary.
-
Sebastian Hahn authored
-
- 13 Oct, 2009 2 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
When we tried to use the deprecated non-threadsafe evdns interfaces in Libevent 2 without using the also-deprecated event_init() interface, Libevent 2 would sensibly crash, since it has no guess where to find the Libevent library. Here we use the evdns_base_*() functions instead if they're present, and fake them if they aren't.
-
- 13 Jul, 2009 1 commit
-
-
Roger Dingledine authored
-
- 12 Jun, 2009 2 commits
-
-
Nick Mathewson authored
The rest of the code was only including event.h so that it could see EV_READ and EV_WRITE, which we were using as part of the connection_watch_events interface for no very good reason.
-
Nick Mathewson authored
This patch adds a new compat_libevent.[ch] set of files, and moves our Libevent compatibility and utilitity functions there. We build them into a separate .a so that nothing else in src/commmon depends on Libevent (partially fixing bug 507). Also, do not use our own built-in evdns copy when we have Libevent 2.0, whose evdns is finally good enough (thus fixing Bug 920).
-
- 03 Jun, 2009 1 commit
-
-
Nick Mathewson authored
Apparently all the stuff that does a linear scan over all the DNS cache entries can get really expensive when your DNS cache is very large. It's hard to say how much this will help performance, since gprof doesn't count time spent in OpenSSL or zlib, but I'd guess 10%. Also, this patch removes calls to assert_connection_ok() from inside the read and write callbacks, which are similarly unneeded, and a little costlier than I'm happy with. This is probably worth backporting to 0.2.0.
-
- 27 May, 2009 1 commit
-
-
Nick Mathewson authored
-
- 24 May, 2009 1 commit
-
-
Sebastian Hahn authored
-
- 23 May, 2009 1 commit
-
-
Specifically if you send SIGUSR1, it will add two lines to the log file: May 22 07:41:59.576 [notice] Our DNS cache has 3364 entries. May 22 07:41:59.576 [notice] Our DNS cache size is approximately 1022656 bytes. [tweaked a bit by nickm]
-
- 04 May, 2009 1 commit
-
-
- 02 May, 2009 1 commit
-
-
Karsten Loesing authored
-
- 30 Jan, 2009 1 commit
-
-
Nick Mathewson authored
svn:r18341
-
- 28 Jan, 2009 1 commit
-
-
Nick Mathewson authored
svn:r18307
-
- 10 Jan, 2009 1 commit
-
-
Nick Mathewson authored
Bugfix on 0.2.1.7-alpha. Backport candidate. Fixes bug 905. svn:r18063
-
- 06 Jan, 2009 1 commit
-
-
Nick Mathewson authored
Fixes the bug part of bug 789. svn:r17983
-
- 04 Jan, 2009 1 commit
-
-
Nick Mathewson authored
The subversion $Id$ fields made every commit force a rebuild of whatever file got committed. They were not actually useful for telling the version of Tor files in the wild. svn:r17867
-
- 26 Dec, 2008 1 commit
-
-
Nick Mathewson authored
Add some early checks to keep ipv6 addresses from failing by accident. Now, they fail on purpose, at least till 0.2.2.something. svn:r17791
-
- 24 Dec, 2008 1 commit
-
-
Nick Mathewson authored
Use the literal parse of an address in dns_resolve_impl if parsing the address as an ipv4 or ipv6 address _succeeded_. Not if it failed. Bug introduced in r17707 (post 0.2.1.8-alpha), and found by xiando. svn:r17758
-
- 22 Dec, 2008 2 commits
-
-
Nick Mathewson authored
svn:r17734
-
Nick Mathewson authored
Add DOCDOC comments for all undocumented functions. Add missing *s to other comments so that they will get recognized as doxygen. svn:r17729
-
- 19 Dec, 2008 1 commit
-
-
Nick Mathewson authored
Move in-addr.arpa parsing and generation into address.c, and simplify the code that does it elsewhere. Incidentally, this lets exit servers answer requests for ip6.arpa addresses. svn:r17707
-
- 18 Dec, 2008 2 commits
-
-
Nick Mathewson authored
svn:r17686
-
Nick Mathewson authored
(The unfixed ones are being downgraded to regular XXXs mainly on the rationale that they don't seem to be exploding Tor, and they were apparently not showstoppers for 0.2.0.x-final.) svn:r17682
-
- 17 Dec, 2008 1 commit
-
-
Nick Mathewson authored
svn:r17662
-
- 10 Dec, 2008 1 commit
-
-
Nick Mathewson authored
svn:r17566
-
- 29 Oct, 2008 1 commit
-
-
Nick Mathewson authored
Implement the 0x20-hack to make DNS poisoning harder against us, especially when resolving large names. Add a cfg option to disable it, since apparently 3/10 of a percent of servers get it wrong. svn:r17171
-
- 21 Oct, 2008 1 commit
-
-
Nick Mathewson authored
Fix the rest of bug 619: reject *:* servers should not do DNS lookups, even if broken clients send them RELAY_BEGIN cells. Patch from rovv. svn:r17138
-
- 16 Oct, 2008 1 commit
-
-
Roger Dingledine authored
svn:r17131
-
- 22 Aug, 2008 1 commit
-
-
Nick Mathewson authored
ipv6: make server-side dns cache remember for each address an ipv6 addr and an ipv4 addr. This fix is just the struct side. svn:r16622
-
- 05 Aug, 2008 1 commit
-
-
Nick Mathewson authored
Initial conversion of uint32_t addr to tor_addr_t addr in connection_t and related types. Most of the Tor wire formats using these new types are in, but the code to generate and use it is not. This is a big patch. Let me know what it breaks for you. svn:r16435
-
- 25 Apr, 2008 1 commit
-
-
Roger Dingledine authored
svn:r14474
-