diff options
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); |