| 1234567891011121314151617181920212223 |
- /*
- * Copyright (C) 2015-2018 Alibaba Group Holding Limited
- */
- #ifndef NGHTTP2VER_H
- #define NGHTTP2VER_H
- /**
- * @macro
- * Version number of the nghttp2 library release
- */
- #define NGHTTP2_VERSION "nghttp2"
- /**
- * @macro
- * Numerical representation of the version number of the nghttp2 library
- * release. This is a 24 bit number with 8 bits for major number, 8 bits
- * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
- */
- #define NGHTTP2_VERSION_NUM 0x013190
- #endif /* NGHTTP2VER_H */
|