Skip to content

Commit be478d8

Browse files
author
Git for Windows Build Agent
committed
Update 4 packages
mingw-w64-i686-nghttp2 (1.66.0-1 -> 1.67.0-1) mingw-w64-i686-python (3.12.11-1 -> 3.12.11-3) mingw-w64-x86_64-nghttp2 (1.66.0-1 -> 1.67.0-1) mingw-w64-x86_64-python (3.12.11-1 -> 3.12.11-3) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 1326a64 commit be478d8

File tree

221 files changed

+427
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+427
-87
lines changed

mingw32/bin/libnghttp2-14.dll

2.44 KB
Binary file not shown.

mingw32/bin/libpython3.12.dll

3.53 KB
Binary file not shown.

mingw32/bin/libpython3.dll

512 Bytes
Binary file not shown.

mingw32/bin/python.exe

0 Bytes
Binary file not shown.

mingw32/bin/python3.12.exe

0 Bytes
Binary file not shown.

mingw32/bin/python3.exe

0 Bytes
Binary file not shown.

mingw32/bin/python3w.exe

0 Bytes
Binary file not shown.

mingw32/bin/pythonw.exe

0 Bytes
Binary file not shown.

mingw32/include/nghttp2/nghttp2.h

Lines changed: 57 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2039,18 +2039,19 @@ typedef int (*nghttp2_on_header_callback2)(nghttp2_session *session,
20392039
/**
20402040
* @functypedef
20412041
*
2042-
* Callback function invoked when a invalid header name/value pair is
2042+
* Callback function invoked when an invalid header name/value pair is
20432043
* received for the |frame|.
20442044
*
20452045
* The parameter and behaviour are similar to
20462046
* :type:`nghttp2_on_header_callback`. The difference is that this
2047-
* callback is only invoked when a invalid header name/value pair is
2048-
* received which is treated as stream error if this callback is not
2049-
* set. Only invalid regular header field are passed to this
2050-
* callback. In other words, invalid pseudo header field is not
2051-
* passed to this callback. Also header fields which includes upper
2052-
* cased latter are also treated as error without passing them to this
2053-
* callback.
2047+
* callback is only invoked when an invalid header name/value pair is
2048+
* received which is treated as stream error if this callback returns
2049+
* :enum:`nghttp2_error.NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE` and
2050+
* :type:`nghttp2_on_invalid_header_callback2` is not set. Only
2051+
* invalid regular header field are passed to this callback. In other
2052+
* words, invalid pseudo header field is not passed to this callback.
2053+
* Also header fields which includes upper cased latter are also
2054+
* treated as error without passing them to this callback.
20542055
*
20552056
* This callback is only considered if HTTP messaging validation is
20562057
* turned on (which is on by default, see
@@ -2076,17 +2077,18 @@ typedef int (*nghttp2_on_invalid_header_callback)(
20762077
/**
20772078
* @functypedef
20782079
*
2079-
* Callback function invoked when a invalid header name/value pair is
2080+
* Callback function invoked when an invalid header name/value pair is
20802081
* received for the |frame|.
20812082
*
20822083
* The parameter and behaviour are similar to
20832084
* :type:`nghttp2_on_header_callback2`. The difference is that this
2084-
* callback is only invoked when a invalid header name/value pair is
2085-
* received which is silently ignored if this callback is not set.
2086-
* Only invalid regular header field are passed to this callback. In
2087-
* other words, invalid pseudo header field is not passed to this
2088-
* callback. Also header fields which includes upper cased latter are
2089-
* also treated as error without passing them to this callback.
2085+
* callback is only invoked when an invalid header name/value pair is
2086+
* received which is silently ignored if neither this callback nor
2087+
* :type:`nghttp2_on_invalid_header_callback` is set. Only invalid
2088+
* regular header field are passed to this callback. In other words,
2089+
* invalid pseudo header field is not passed to this callback. Also
2090+
* header fields which includes upper cased latter are also treated as
2091+
* error without passing them to this callback.
20902092
*
20912093
* This callback is only considered if HTTP messaging validation is
20922094
* turned on (which is on by default, see
@@ -2445,6 +2447,15 @@ typedef int (*nghttp2_error_callback2)(nghttp2_session *session,
24452447
int lib_error_code, const char *msg,
24462448
size_t len, void *user_data);
24472449

2450+
/**
2451+
* @functypedef
2452+
*
2453+
* Callback function invoked when unpredictable data of |destlen|
2454+
* bytes are needed. The implementation must write unpredictable data
2455+
* of |destlen| bytes into the buffer pointed by |dest|.
2456+
*/
2457+
typedef void (*nghttp2_rand_callback)(uint8_t *dest, size_t destlen);
2458+
24482459
struct nghttp2_session_callbacks;
24492460

24502461
/**
@@ -2649,7 +2660,7 @@ NGHTTP2_EXTERN void nghttp2_session_callbacks_set_on_header_callback2(
26492660
/**
26502661
* @function
26512662
*
2652-
* Sets callback function invoked when a invalid header name/value
2663+
* Sets callback function invoked when an invalid header name/value
26532664
* pair is received. If both
26542665
* `nghttp2_session_callbacks_set_on_invalid_header_callback()` and
26552666
* `nghttp2_session_callbacks_set_on_invalid_header_callback2()` are
@@ -2662,7 +2673,7 @@ NGHTTP2_EXTERN void nghttp2_session_callbacks_set_on_invalid_header_callback(
26622673
/**
26632674
* @function
26642675
*
2665-
* Sets callback function invoked when a invalid header name/value
2676+
* Sets callback function invoked when an invalid header name/value
26662677
* pair is received.
26672678
*/
26682679
NGHTTP2_EXTERN void nghttp2_session_callbacks_set_on_invalid_header_callback2(
@@ -2833,6 +2844,18 @@ NGHTTP2_EXTERN void nghttp2_session_callbacks_set_error_callback(
28332844
NGHTTP2_EXTERN void nghttp2_session_callbacks_set_error_callback2(
28342845
nghttp2_session_callbacks *cbs, nghttp2_error_callback2 error_callback2);
28352846

2847+
/**
2848+
* @function
2849+
*
2850+
* Sets callback function invoked when unpredictable data is needed.
2851+
* Although this callback is optional due to the backward
2852+
* compatibility, it is recommended to specify it to harden the
2853+
* runtime behavior against suspicious activities of a remote
2854+
* endpoint.
2855+
*/
2856+
NGHTTP2_EXTERN void nghttp2_session_callbacks_set_rand_callback(
2857+
nghttp2_session_callbacks *cbs, nghttp2_rand_callback rand_callback);
2858+
28362859
/**
28372860
* @functypedef
28382861
*
@@ -3218,6 +3241,23 @@ nghttp2_option_set_stream_reset_rate_limit(nghttp2_option *option,
32183241
NGHTTP2_EXTERN void nghttp2_option_set_max_continuations(nghttp2_option *option,
32193242
size_t val);
32203243

3244+
/**
3245+
* @function
3246+
*
3247+
* This function sets the rate limit for the "glitches", the
3248+
* suspicious activities from a remote endpoint. It is a token-bucket
3249+
* based rate limiter. |burst| specifies the number of tokens that is
3250+
* initially available. The maximum number of tokens is capped to
3251+
* this value. |rate| specifies the number of tokens that are
3252+
* regenerated per second. When a suspicious activity is detected,
3253+
* some amount of tokens are consumed. If there is no token
3254+
* available, GOAWAY is sent to tear down the connection. |burst| and
3255+
* |rate| default to 1000 and 33 respectively.
3256+
*/
3257+
NGHTTP2_EXTERN void nghttp2_option_set_glitch_rate_limit(nghttp2_option *option,
3258+
uint64_t burst,
3259+
uint64_t rate);
3260+
32213261
/**
32223262
* @function
32233263
*

mingw32/include/nghttp2/nghttp2ver.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
2929
* @macro
3030
* Version number of the nghttp2 library release
3131
*/
32-
#define NGHTTP2_VERSION "1.66.0"
32+
#define NGHTTP2_VERSION "1.67.0"
3333

3434
/**
3535
* @macro
3636
* Numerical representation of the version number of the nghttp2 library
3737
* release. This is a 24 bit number with 8 bits for major number, 8 bits
3838
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
3939
*/
40-
#define NGHTTP2_VERSION_NUM 0x014200
40+
#define NGHTTP2_VERSION_NUM 0x014300
4141

4242
#endif /* NGHTTP2VER_H */

0 commit comments

Comments
 (0)