- May 25, 2009
-
-
- May 24, 2009
-
-
Sebastian Hahn authored
-
- May 23, 2009
-
-
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]
-
Nick Mathewson authored
-
- May 22, 2009
-
-
Nick Mathewson authored
-
Nick Mathewson authored
Really, our idiocy was that we were calling event_set() on the same event more than once, which sometimes led to us calling event_set() on an event that was already inserted, thus making it look uninserted. With this patch, we just initialize the timeout events when we create the requests and nameservers, and we don't need to worry about double-add and double-del cases at all.
-
Nick Mathewson authored
-
Nick Mathewson authored
Basically, all this means is downgrading our warning messages to debug messages, since the bug workaround code here is adequate to stop the bug.
-
Nick Mathewson authored
-
Nick Mathewson authored
-
-
Mike Perry authored
-
- May 20, 2009
-
-
Mike Perry authored
Also add implementation details and a timestampt to the output of 161.
-
- May 19, 2009
-
-
Nick Mathewson authored
-
- May 18, 2009
-
-
Nick Mathewson authored
-
Nick Mathewson authored
If we ever add an event, then set it, then add it again, there will be now two pointers to the event in the event base. If we delete one and free it, the first pointer will still be there, and possibly cause a crash later. This patch adds detection for this case to the code paths in eventdns.c, and works around it. If the warning message ever displays, then a cleverer fix is in order. {I am not too confident that this *is* the fix, since bug 957 is very tricky. If it is, it is a bugfix on 0.2.0.}
-
- May 17, 2009
-
-
Nick Mathewson authored
-
and cert from disk. Bugfix on 0.2.0.1-alpha.
-
Nick Mathewson authored
When we got a descriptor that we (as an authority) rejected as totally bad, we were freeing it, then using the digest in its RAM to look up its download status. Caught by arma with valgrind. Bugfix on 0.2.1.9-alpha.
-
Nick Mathewson authored
-
Nick Mathewson authored
-
-
-
Nick Mathewson authored
-
Nick Mathewson authored
The trick is that we should assert that our next_mem pointer has not run off the end of the array _before_ we realign the pointer, since doing that could take us over the end... but only if we're on a system where malloc() gives us ram in increments smaller than sizeof(void*).
-
- May 16, 2009
-
-
-
Nick Mathewson authored
The big changes are to go from a "caches compute the micro-descriptor" format to an "authorities generate microdescriptors" format. See or-dev discussions of January 2009 for full rationales.
-
- May 15, 2009
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
- May 14, 2009
-
-
- May 13, 2009
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Bridges are not supposed to publish router descriptors to the directory authorities. It defeats the point of bridges when they are included in the public relay directory. This patch puts out a warning and exits when the node is configured as a bridge and to publish v1, v2, or v3 descriptors at the same time. Also fixes part of bug 932.
-