h2spec generic/5 test 1 should not send an HTTP header with an empty value. Such a header might be rejected by a server since a field-name: (empty value) is an invalid HTTP/1.1 header line.
Is there a way for generic/5 test 1 (1: Sends a indexed header field representation) to send a valid header line? My server HPACK-decodes the request and returns 400 Bad Request, which passes the h2spec test. However, related to #120, if I return GOAWAY instead of 400 Bad Request, h2spec fails for generic/5 test 1.
h2spec generic/5 test 1 should not send an HTTP header with an empty value. Such a header might be rejected by a server since a field-name: (empty value) is an invalid HTTP/1.1 header line.
h2spec generic/5 test 1 sends:
Is there a way for generic/5 test 1 (
1: Sends a indexed header field representation
) to send a valid header line? My server HPACK-decodes the request and returns 400 Bad Request, which passes the h2spec test. However, related to #120, if I return GOAWAY instead of 400 Bad Request, h2spec fails for generic/5 test 1.