logging_types.h (623B)
1 /* Copyright (c) 2001, Matej Pfajfar. 2 * Copyright (c) 2001-2004, Roger Dingledine. 3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. 4 * Copyright (c) 2007-2021, The Tor Project, Inc. */ 5 /* See LICENSE for licensing information */ 6 7 /** 8 * \file logging_types.h 9 * 10 * \brief Global definition for types used by logging systems. 11 **/ 12 13 #ifndef TOR_LOGGING_TYPES_H 14 #define TOR_LOGGING_TYPES_H 15 16 /* We define this here so that it can be used both by backtrace.h and 17 * log.h. 18 */ 19 20 /** Mask of zero or more log domains, OR'd together. */ 21 typedef uint64_t log_domain_mask_t; 22 23 #endif /* !defined(TOR_LOGGING_TYPES_H) */