diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-10-25 08:20:10 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-10-25 08:20:10 +0000 |
commit | e7e170a59ec8db6d5dc39cfbff193a107ac78220 (patch) | |
tree | ac0142e44e5dd186732037686405b17228377b3c /src/common/log.h | |
parent | 932106f54c35b815756d518b236448b9884d6bde (diff) | |
download | tor-e7e170a59ec8db6d5dc39cfbff193a107ac78220.tar.gz tor-e7e170a59ec8db6d5dc39cfbff193a107ac78220.zip |
Change more files to new loggin interface. 3 left.
svn:r5310
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/log.h b/src/common/log.h index 0cd6dd442a..7ca278b78f 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -84,8 +84,9 @@ #define LD_DIRSERV (1u<<14) /** Onion routing protocol. */ #define LD_OR (1u<<15) -/** Connections leaving Tor, other exit stuff. */ -#define LD_EXIT (1u<<16) +/** Generic edge-connection functionality. */ +#define LD_EDGE (1u<<16) +#define LD_EXIT LD_EDGE typedef void (*log_callback)(int severity, unsigned int domain, const char *msg); |