nghttp2_version.c 438 B

12345678910111213141516171819
  1. /*
  2. * Copyright (C) 2015-2018 Alibaba Group Holding Limited
  3. */
  4. #ifdef HAVE_CONFIG_H
  5. #include <config.h>
  6. #endif /* HAVE_CONFIG_H */
  7. #include "nghttp2.h"
  8. static nghttp2_info version = {NGHTTP2_VERSION_AGE, NGHTTP2_VERSION_NUM,
  9. NGHTTP2_VERSION, NGHTTP2_PROTO_VERSION_ID};
  10. nghttp2_info *nghttp2_version(int least_version) {
  11. if (least_version > NGHTTP2_VERSION_NUM)
  12. return NULL;
  13. return &version;
  14. }