nghttp2_debug.h 551 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2015-2018 Alibaba Group Holding Limited
  3. */
  4. #ifndef NGHTTP2_DEBUG_H
  5. #define NGHTTP2_DEBUG_H
  6. #ifdef HAVE_CONFIG_H
  7. #include <config.h>
  8. #endif /* HAVE_CONFIG_H */
  9. #include "nghttp2.h"
  10. #ifdef DEBUGBUILD
  11. #define DEBUGF(...) nghttp2_debug_vprintf(__VA_ARGS__)
  12. void nghttp2_debug_vprintf(const char *format, ...);
  13. #else
  14. #define DEBUGF(...) \
  15. do { \
  16. } while (0)
  17. #endif
  18. #endif /* NGHTTP2_DEBUG_H */