diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-11-03 14:10:28 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-11-03 14:10:28 -0800 |
commit | 795f1de3256ac5f51590e79aa4501a7e673f35b0 (patch) | |
tree | dc3326d2b401e06e0ad416f830663aad3280f709 /src/core/transport | |
parent | 32bd81d2058d70be256f0dce2d1bfa2b5818bb8f (diff) |
Temporary patch for max table size not being implemented yet
Diffstat (limited to 'src/core/transport')
-rw-r--r-- | src/core/transport/chttp2/hpack_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/transport/chttp2/hpack_parser.c b/src/core/transport/chttp2/hpack_parser.c index 6eebfc3ce4..ccfaece936 100644 --- a/src/core/transport/chttp2/hpack_parser.c +++ b/src/core/transport/chttp2/hpack_parser.c @@ -901,8 +901,8 @@ static int parse_lithdr_nvridx_v(grpc_chttp2_hpack_parser *p, static int finish_max_tbl_size(grpc_chttp2_hpack_parser *p, const gpr_uint8 *cur, const gpr_uint8 *end) { gpr_log(GPR_INFO, "MAX TABLE SIZE: %d", p->index); - abort(); /* not implemented */ - return parse_begin(p, cur, end); + /* not implemented */ + return 0; } /* parse a max table size change, max size < 15 */ |