diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-10-25 17:52:14 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-10-25 17:52:14 +0000 |
commit | 049f6c01310006e9c30fedd46ecda44b7d1d5570 (patch) | |
tree | caf005ba74ea6df0d52b1cd8740c080483979cb5 /src/common/log.h | |
parent | 7a9774eff0e8f05c1adb65f90a539986d50c40bd (diff) | |
download | tor-049f6c01310006e9c30fedd46ecda44b7d1d5570.tar.gz tor-049f6c01310006e9c30fedd46ecda44b7d1d5570.zip |
Switch remaining files to new log interface.
svn:r5315
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/log.h b/src/common/log.h index ac0c5b76bb..11a959b6d7 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -87,6 +87,8 @@ /** Generic edge-connection functionality. */ #define LD_EDGE (1u<<16) #define LD_EXIT LD_EDGE +/** Bandwidth accounting. */ +#define LD_ACCT (1u<<17) typedef void (*log_callback)(int severity, unsigned int domain, const char *msg); |