Skip to content

Commit

Permalink
[manual] Sync c-core 1.56.2 and bump VERSION (#199)
Browse files Browse the repository at this point in the history
* bump VERSION to 1.56.0

* [manual] Sync c-core 1.56.2

* bump VERSION to 1.56.2
  • Loading branch information
HannahShiSFB authored Aug 2, 2023
1 parent 6677d66 commit 4e10405
Show file tree
Hide file tree
Showing 179 changed files with 12,981 additions and 806 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.56.0
1.56.2
34 changes: 29 additions & 5 deletions native/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ g_stands_for = "galvanized" # @unused

core_version = "33.0.0" # @unused

version = "1.56.0" # @unused
version = "1.56.2" # @unused

GPR_PUBLIC_HDRS = [
"include/grpc/support/alloc.h",
Expand Down Expand Up @@ -3699,23 +3699,47 @@ grpc_cc_library(
"//src/core:ext/transport/chttp2/transport/hpack_parser_table.h",
],
external_deps = [
"absl/functional:function_ref",
"absl/status",
"absl/strings",
"absl/strings:str_format",
],
deps = [
"gpr",
"gpr_platform",
"grpc_base",
"grpc_trace",
"hpack_parse_result",
"http_trace",
"//src/core:error",
"//src/core:hpack_constants",
"//src/core:no_destruct",
"//src/core:slice",
],
)

grpc_cc_library(
name = "hpack_parse_result",
srcs = [
"//src/core:ext/transport/chttp2/transport/hpack_parse_result.cc",
],
hdrs = [
"//src/core:ext/transport/chttp2/transport/hpack_parse_result.h",
],
external_deps = [
"absl/status",
"absl/strings",
"absl/strings:str_format",
"absl/types:optional",
],
deps = [
"gpr",
"grpc_base",
"//src/core:error",
"//src/core:hpack_constants",
"//src/core:slice",
"//src/core:status_helper",
],
)

grpc_cc_library(
name = "hpack_parser",
srcs = [
Expand All @@ -3728,7 +3752,6 @@ grpc_cc_library(
"absl/base:core_headers",
"absl/status",
"absl/strings",
"absl/strings:str_format",
"absl/types:optional",
"absl/types:span",
"absl/types:variant",
Expand All @@ -3740,16 +3763,17 @@ grpc_cc_library(
"grpc_base",
"grpc_public_hdrs",
"grpc_trace",
"hpack_parse_result",
"hpack_parser_table",
"stats",
"//src/core:decode_huff",
"//src/core:error",
"//src/core:hpack_constants",
"//src/core:match",
"//src/core:random_early_detection",
"//src/core:slice",
"//src/core:slice_refcount",
"//src/core:stats_data",
"//src/core:status_helper",
],
)

Expand Down
11 changes: 7 additions & 4 deletions native/CMakeLists.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions native/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4e10405

Please sign in to comment.