/* SPDX-License-Identifier: BSD-3-Clause */ /* * Copyright (c) 1995 Danny Gasparovski. */ #ifndef DEBUG_H_ #define DEBUG_H_ extern unsigned int slirp_debug; #define DEBUG_CALL(name) \ do { \ if (G_UNLIKELY(slirp_debug & SLIRP_DBG_CALL)) { \ g_debug(name "..."); \ } \ } while (0) #define DEBUG_VERBOSE_CALL(name) \ do { \ if (G_UNLIKELY(slirp_debug & SLIRP_DBG_VERBOSE_CALL)) { \ g_debug(name "..."); \ } \ } while (0) #define DEBUG_RAW_CALL(...) \ do { \ if (G_UNLIKELY(slirp_debug & SLIRP_DBG_CALL)) { \ g_debug(__VA_ARGS__); \ } \ } while (0) #define DEBUG_ARG(...) \ do { \ if (G_UNLIKELY(slirp_debug & SLIRP_DBG_CALL)) { \ g_debug(" " __VA_ARGS__); \ } \ } while (0) #define DEBUG_MISC(...) \ do { \ if (G_UNLIKELY(slirp_debug & SLIRP_DBG_MISC)) { \ g_debug(__VA_ARGS__); \ } \ } while (0) #define DEBUG_ERROR(...) \ do { \ if (G_UNLIKELY(slirp_debug & SLIRP_DBG_ERROR)) { \ g_debug(__VA_ARGS__); \ } \ } while (0) #define DEBUG_TFTP(...) \ do { \ if (G_UNLIKELY(slirp_debug & SLIRP_DBG_TFTP)) { \ g_debug(__VA_ARGS__); \ } \ } while (0) #endif /* DEBUG_H_ */