blob: f4da00cffb4ad98126bcd4ffb3d13d71d6d247ea [file] [log] [blame]
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
*/
#ifndef DEBUG_H_
#define DEBUG_H_
#define DBG_CALL (1 << 0)
#define DBG_MISC (1 << 1)
#define DBG_ERROR (1 << 2)
#define DBG_TFTP (1 << 3)
#define DBG_VERBOSE_CALL (1 << 4)
extern int slirp_debug;
#define DEBUG_CALL(name) \
do { \
if (G_UNLIKELY(slirp_debug & DBG_CALL)) { \
g_debug(name "..."); \
} \
} while (0)
#define DEBUG_VERBOSE_CALL(name) \
do { \
if (G_UNLIKELY(slirp_debug & DBG_VERBOSE_CALL)) { \
g_debug(name "..."); \
} \
} while (0)
#define DEBUG_RAW_CALL(...) \
do { \
if (G_UNLIKELY(slirp_debug & DBG_CALL)) { \
g_debug(__VA_ARGS__); \
} \
} while (0)
#define DEBUG_ARG(...) \
do { \
if (G_UNLIKELY(slirp_debug & DBG_CALL)) { \
g_debug(" " __VA_ARGS__); \
} \
} while (0)
#define DEBUG_MISC(...) \
do { \
if (G_UNLIKELY(slirp_debug & DBG_MISC)) { \
g_debug(__VA_ARGS__); \
} \
} while (0)
#define DEBUG_ERROR(...) \
do { \
if (G_UNLIKELY(slirp_debug & DBG_ERROR)) { \
g_debug(__VA_ARGS__); \
} \
} while (0)
#define DEBUG_TFTP(...) \
do { \
if (G_UNLIKELY(slirp_debug & DBG_TFTP)) { \
g_debug(__VA_ARGS__); \
} \
} while (0)
#endif /* DEBUG_H_ */