
sample: examples\aliyun_iotkit_csdk_mqtt project: board\TencentOS_tiny_EVB_MX_Plus\KEIL\aliyun_iotkit_csdk_mqtt
20 lines
438 B
C
20 lines
438 B
C
/*
|
|
* Copyright (C) 2015-2018 Alibaba Group Holding Limited
|
|
*/
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
#include "nghttp2.h"
|
|
|
|
static nghttp2_info version = {NGHTTP2_VERSION_AGE, NGHTTP2_VERSION_NUM,
|
|
NGHTTP2_VERSION, NGHTTP2_PROTO_VERSION_ID};
|
|
|
|
nghttp2_info *nghttp2_version(int least_version) {
|
|
if (least_version > NGHTTP2_VERSION_NUM)
|
|
return NULL;
|
|
return &version;
|
|
}
|