nghttp2ver.h 506 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2015-2018 Alibaba Group Holding Limited
  3. */
  4. #ifndef NGHTTP2VER_H
  5. #define NGHTTP2VER_H
  6. /**
  7. * @macro
  8. * Version number of the nghttp2 library release
  9. */
  10. #define NGHTTP2_VERSION "nghttp2"
  11. /**
  12. * @macro
  13. * Numerical representation of the version number of the nghttp2 library
  14. * release. This is a 24 bit number with 8 bits for major number, 8 bits
  15. * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
  16. */
  17. #define NGHTTP2_VERSION_NUM 0x013190
  18. #endif /* NGHTTP2VER_H */