Skip to content
Snippets Groups Projects
Commit 03dc30e7 authored by ctiller's avatar ctiller Committed by Nicolas Noble
Browse files

Validate TE header is legal for HTTP2.

As per draft-16 section 8.1.2.2:
The only exception to this is the TE header field, which MAY be
present in an HTTP/2 request; when it is, it MUST NOT contain any
value other than "trailers".

https://tools.ietf.org/html/draft-ietf-httpbis-http2-16
	Change on 2014/12/01 by ctiller <ctiller@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=81111980
parent 097ef9b7
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,13 @@ static void call_op(grpc_call_element *elem, grpc_call_op *op) { ...@@ -64,6 +64,13 @@ static void call_op(grpc_call_element *elem, grpc_call_op *op) {
/* swallow it */ /* swallow it */
grpc_mdelem_unref(op->data.metadata); grpc_mdelem_unref(op->data.metadata);
op->done_cb(op->user_data, GRPC_OP_OK); op->done_cb(op->user_data, GRPC_OP_OK);
} else if (op->data.metadata->key == channeld->te_trailers->key) {
gpr_log(GPR_ERROR, "Invalid te: header: '%s'",
grpc_mdstr_as_c_string(op->data.metadata->value));
/* swallow it */
grpc_mdelem_unref(op->data.metadata);
op->done_cb(op->user_data, GRPC_OP_OK);
grpc_call_element_send_cancel(elem);
} else { } else {
/* pass the event up */ /* pass the event up */
grpc_call_next_op(elem, op); grpc_call_next_op(elem, op);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment