aboutsummaryrefslogtreecommitdiff
path: root/src/ext/eventdns.c
Commit message (Collapse)AuthorAge
* Rename log() to tor_log() for loggingNick Mathewson2013-02-01
| | | | | | | | | | | | | This is meant to avoid conflict with the built-in log() function in math.h. It resolves ticket 7599. First reported by dhill. This was generated with the following perl script: #!/usr/bin/perl -w -i -p s/\blog\(LOG_(ERR|WARN|NOTICE|INFO|DEBUG)\s*,\s*/log_\L$1\(/g; s/\blog\(/tor_log\(/g;
* Handle EWOULDBLOCK as EAGAIN if they happen to be different.Nick Mathewson2013-01-11
| | | | Fixes bug 7935. Reported by 'oftc_must_be_destroyed'.
* Fix a reserved identifier that my scripts missedNick Mathewson2012-10-15
| | | | | | | | | My scripts missed it because it was in eventdns.c, which was in ext, but it _was_ using one of our identifiers. That's probably because eventdns.c has drifted a bit since we forked it. I'm not going to fix the other reserved identifiers in eventdns.c, since that would make it drift even more.
* Move all externally maintained source files into src/extNick Mathewson2012-10-11
The rationale for treating these files differently is that we should be checking upstream for changes as applicable, and merging changes upstream as warranted.