Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nghttp2: update library to v1.58.0 #275

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion nghttp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ set(srcs
"nghttp2/lib/nghttp2_pq.c"
"nghttp2/lib/nghttp2_priority_spec.c"
"nghttp2/lib/nghttp2_queue.c"
"nghttp2/lib/nghttp2_ratelim.c"
"nghttp2/lib/nghttp2_rcbuf.c"
"nghttp2/lib/nghttp2_session.c"
"nghttp2/lib/nghttp2_stream.c"
"nghttp2/lib/nghttp2_submit.c"
"nghttp2/lib/nghttp2_version.c")
"nghttp2/lib/nghttp2_time.c"
"nghttp2/lib/nghttp2_version.c"
"nghttp2/lib/sfparse.c")

idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS port/include nghttp2/lib/includes
Expand Down
2 changes: 1 addition & 1 deletion nghttp/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "1.52.0~1"
version: "1.58.0"
description: "nghttp2 - HTTP/2 C Library"
url: https://github.com/espressif/idf-extra-components/tree/master/nghttp
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion nghttp/nghttp2
Submodule nghttp2 updated 133 files
4 changes: 2 additions & 2 deletions nghttp/port/include/nghttp2/nghttp2ver.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
* @macro
* Version number of the nghttp2 library release
*/
#define NGHTTP2_VERSION "1.52.0"
#define NGHTTP2_VERSION "1.58.0"

/**
* @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 0x015200
#define NGHTTP2_VERSION_NUM 0x013a00

#endif /* NGHTTP2VER_H */
6 changes: 6 additions & 0 deletions nghttp/port/private_include/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
#include "stdlib.h"
#include "string.h"

/* Define to 1 if you have the `clock_gettime' function. */
#define HAVE_CLOCK_GETTIME 1

/* Define to 1 if you have the <time.h> header file. */
#define HAVE_TIME_H 1

#if (!defined(nghttp_unlikely))
#define nghttp_unlikely(Expression) !!(Expression)
#endif
Expand Down
4 changes: 2 additions & 2 deletions nghttp/sbom_nghttp2.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: nghttp2
version: 1.52.0
version: 1.58.0
cpe: cpe:2.3:a:nghttp2:nghttp2:{}:*:*:*:*:*:*:*
supplier: 'Organization: nghttp2 <https://nghttp2.org/'
description: nghttp2 - HTTP/2 C Library and tools
url: https://github.com/nghttp2/nghttp2
hash: be0491294a63d891bd12b6b1b7e372a45a5d0ffe
hash: e2bc59bec9004bca47df961cbbad20664d7e53b2
Loading