Merge branch 'hpack_static_table' of github.com:hcaseyal/grpc into hpack_static_table

reviewable/pr16488/r2
Hope Casey-Allen 6 years ago
commit 98a70770ac
  1. 5
      src/core/ext/transport/chttp2/transport/chttp2_transport.cc

@ -1333,8 +1333,9 @@ static void log_metadata(const grpc_metadata_batch* md_batch, uint32_t id,
for (grpc_linked_mdelem* md = md_batch->list.head; md != nullptr;
md = md->next) {
if (is_valid_mdelem_index(md->md_index)) {
gpr_log(GPR_INFO, "HTTP:%d:%s:%s: hpack table index: %d", id, is_initial ? "HDR" : "TRL",
is_client ? "CLI" : "SVR", md->md_index);
gpr_log(GPR_INFO, "HTTP:%d:%s:%s: hpack table index: %d", id,
is_initial ? "HDR" : "TRL", is_client ? "CLI" : "SVR",
md->md_index);
} else {
char* key = grpc_slice_to_c_string(GRPC_MDKEY(md->md));
char* value = grpc_slice_to_c_string(GRPC_MDVALUE(md->md));

Loading…
Cancel
Save