
sample: examples\aliyun_iotkit_csdk_mqtt project: board\TencentOS_tiny_EVB_MX_Plus\KEIL\aliyun_iotkit_csdk_mqtt
24 lines
506 B
C
24 lines
506 B
C
/*
|
|
* 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 */
|