| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -29,14 +29,14 @@ | |||
| 29 | 29 | * @macro | |
| 30 | 30 | * Version number of the nghttp2 library release | |
| 31 | 31 | */ | |
| 32 | - #define NGHTTP2_VERSION "1.67.1" | ||
| 32 | + #define NGHTTP2_VERSION "1.68.0" | ||
| 33 | 33 | ||
| 34 | 34 | /** | |
| 35 | 35 | * @macro | |
| 36 | 36 | * Numerical representation of the version number of the nghttp2 library | |
| 37 | 37 | * release. This is a 24 bit number with 8 bits for major number, 8 bits | |
| 38 | 38 | * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203. | |
| 39 | 39 | */ | |
| 40 | - #define NGHTTP2_VERSION_NUM 0x014301 | ||
| 40 | + #define NGHTTP2_VERSION_NUM 0x014400 | ||
| 41 | 41 | ||
| 42 | 42 | #endif /* NGHTTP2VER_H */ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,8 +27,8 @@ | |||
| 27 | 27 | ||
| 28 | 28 | #ifdef HAVE_CONFIG_H | |
| 29 | 29 | # include <config.h> | |
| 30 | - #endif /* HAVE_CONFIG_H */ | ||
| 30 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 31 | 31 | ||
| 32 | 32 | #include <nghttp2/nghttp2.h> | |
| 33 | 33 | ||
| 34 | - #endif /* NGHTTP2_ALPN_H */ | ||
| 34 | + #endif /* !defined(NGHTTP2_ALPN_H) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,7 +27,7 @@ | |||
| 27 | 27 | ||
| 28 | 28 | #ifdef HAVE_CONFIG_H | |
| 29 | 29 | # include <config.h> | |
| 30 | - #endif /* HAVE_CONFIG_H */ | ||
| 30 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 31 | 31 | ||
| 32 | 32 | #include <nghttp2/nghttp2.h> | |
| 33 | 33 | ||
@@ -409,4 +409,4 @@ int nghttp2_bufs_next_present(nghttp2_bufs *bufs); | |||
| 409 | 409 | */ | |
| 410 | 410 | size_t nghttp2_bufs_len(nghttp2_bufs *bufs); | |
| 411 | 411 | ||
| 412 | - #endif /* NGHTTP2_BUF_H */ | ||
| 412 | + #endif /* !defined(NGHTTP2_BUF_H) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,7 +27,7 @@ | |||
| 27 | 27 | ||
| 28 | 28 | #ifdef HAVE_CONFIG_H | |
| 29 | 29 | # include <config.h> | |
| 30 | - #endif /* HAVE_CONFIG_H */ | ||
| 30 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 31 | 31 | ||
| 32 | 32 | #include <nghttp2/nghttp2.h> | |
| 33 | 33 | ||
@@ -154,4 +154,4 @@ struct nghttp2_session_callbacks { | |||
| 154 | 154 | nghttp2_rand_callback rand_callback; | |
| 155 | 155 | }; | |
| 156 | 156 | ||
| 157 | - #endif /* NGHTTP2_CALLBACKS_H */ | ||
| 157 | + #endif /* !defined(NGHTTP2_CALLBACKS_H) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -50,11 +50,11 @@ void nghttp2_set_debug_vprintf_callback( | |||
| 50 | 50 | static_debug_vprintf_callback = debug_vprintf_callback; | |
| 51 | 51 | } | |
| 52 | 52 | ||
| 53 | - #else /* !DEBUGBUILD */ | ||
| 53 | + #else /* !defined(DEBUGBUILD) */ | ||
| 54 | 54 | ||
| 55 | 55 | void nghttp2_set_debug_vprintf_callback( | |
| 56 | 56 | nghttp2_debug_vprintf_callback debug_vprintf_callback) { | |
| 57 | 57 | (void)debug_vprintf_callback; | |
| 58 | 58 | } | |
| 59 | 59 | ||
| 60 | - #endif /* !DEBUGBUILD */ | ||
| 60 | + #endif /* !defined(DEBUGBUILD) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,17 +27,17 @@ | |||
| 27 | 27 | ||
| 28 | 28 | #ifdef HAVE_CONFIG_H | |
| 29 | 29 | # include <config.h> | |
| 30 | - #endif /* HAVE_CONFIG_H */ | ||
| 30 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 31 | 31 | ||
| 32 | 32 | #include <nghttp2/nghttp2.h> | |
| 33 | 33 | ||
| 34 | 34 | #ifdef DEBUGBUILD | |
| 35 | 35 | # define DEBUGF(...) nghttp2_debug_vprintf(__VA_ARGS__) | |
| 36 | 36 | void nghttp2_debug_vprintf(const char *format, ...); | |
| 37 | - #else | ||
| 37 | + #else /* !defined(DEBUGBUILD) */ | ||
| 38 | 38 | # define DEBUGF(...) \ | |
| 39 | 39 | do { \ | |
| 40 | 40 | } while (0) | |
| 41 | - #endif | ||
| 41 | + #endif /* !defined(DEBUGBUILD) */ | ||
| 42 | 42 | ||
| 43 | - #endif /* NGHTTP2_DEBUG_H */ | ||
| 43 | + #endif /* !defined(NGHTTP2_DEBUG_H) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -28,7 +28,7 @@ | |||
| 28 | 28 | ||
| 29 | 29 | #ifdef HAVE_CONFIG_H | |
| 30 | 30 | # include <config.h> | |
| 31 | - #endif /* HAVE_CONFIG_H */ | ||
| 31 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 32 | 32 | ||
| 33 | 33 | #include <nghttp2/nghttp2.h> | |
| 34 | 34 | ||
@@ -62,4 +62,4 @@ void nghttp2_extpri_from_uint8(nghttp2_extpri *extpri, uint8_t u8extpri); | |||
| 62 | 62 | */ | |
| 63 | 63 | #define nghttp2_extpri_uint8_inc(PRI) (((PRI) & NGHTTP2_EXTPRI_INC_MASK) != 0) | |
| 64 | 64 | ||
| 65 | - #endif /* NGHTTP2_EXTPRI_H */ | ||
| 65 | + #endif /* !defined(NGHTTP2_EXTPRI_H) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,7 +27,7 @@ | |||
| 27 | 27 | ||
| 28 | 28 | #ifdef HAVE_CONFIG_H | |
| 29 | 29 | # include <config.h> | |
| 30 | - #endif /* HAVE_CONFIG_H */ | ||
| 30 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 31 | 31 | ||
| 32 | 32 | #include <nghttp2/nghttp2.h> | |
| 33 | 33 | #include "nghttp2_hd.h" | |
@@ -634,4 +634,4 @@ int nghttp2_iv_check(const nghttp2_settings_entry *iv, size_t niv); | |||
| 634 | 634 | void nghttp2_frame_add_pad(nghttp2_bufs *bufs, nghttp2_frame_hd *hd, | |
| 635 | 635 | size_t padlen, int framehd_only); | |
| 636 | 636 | ||
| 637 | - #endif /* NGHTTP2_FRAME_H */ | ||
| 637 | + #endif /* !defined(NGHTTP2_FRAME_H) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,7 +27,7 @@ | |||
| 27 | 27 | ||
| 28 | 28 | #ifdef HAVE_CONFIG_H | |
| 29 | 29 | # include <config.h> | |
| 30 | - #endif /* HAVE_CONFIG_H */ | ||
| 30 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 31 | 31 | ||
| 32 | 32 | #include <nghttp2/nghttp2.h> | |
| 33 | 33 | ||
@@ -439,4 +439,4 @@ nghttp2_ssize nghttp2_hd_huff_decode(nghttp2_hd_huff_decode_context *ctx, | |||
| 439 | 439 | */ | |
| 440 | 440 | int nghttp2_hd_huff_decode_failure_state(nghttp2_hd_huff_decode_context *ctx); | |
| 441 | 441 | ||
| 442 | - #endif /* NGHTTP2_HD_H */ | ||
| 442 | + #endif /* !defined(NGHTTP2_HD_H) */ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,7 +27,7 @@ | |||
| 27 | 27 | ||
| 28 | 28 | #ifdef HAVE_CONFIG_H | |
| 29 | 29 | # include <config.h> | |
| 30 | - #endif /* HAVE_CONFIG_H */ | ||
| 30 | + #endif /* defined(HAVE_CONFIG_H) */ | ||
| 31 | 31 | ||
| 32 | 32 | #include <nghttp2/nghttp2.h> | |
| 33 | 33 | ||
@@ -69,4 +69,4 @@ typedef struct { | |||
| 69 | 69 | extern const nghttp2_huff_sym huff_sym_table[]; | |
| 70 | 70 | extern const nghttp2_huff_decode huff_decode_table[][16]; | |
| 71 | 71 | ||
| 72 | - #endif /* NGHTTP2_HD_HUFFMAN_H */ | ||
| 72 | + #endif /* !defined(NGHTTP2_HD_HUFFMAN_H) */ | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments