MCPcopy Create free account
hub / github.com/apache/trafficserver / Http2Error

Class Http2Error

include/proxy/http2/HTTP2.h:271–283  ·  view source on GitHub ↗

[RFC 7540] 5.4. Error Handling

Source from the content-addressed store, hash-verified

269
270// [RFC 7540] 5.4. Error Handling
271struct Http2Error {
272 Http2Error(const Http2ErrorClass error_class = Http2ErrorClass::HTTP2_ERROR_CLASS_NONE,
273 const Http2ErrorCode error_code = Http2ErrorCode::HTTP2_ERROR_NO_ERROR, const char *err_msg = "")
274 {
275 cls = error_class;
276 code = error_code;
277 msg = err_msg;
278 };
279
280 Http2ErrorClass cls;
281 Http2ErrorCode code;
282 const char *msg;
283};
284
285// [RFC 7540] 6.5.1. SETTINGS Format
286struct Http2SettingsParameter {

Callers 13

rcv_data_frameMethod · 0.85
rcv_headers_frameMethod · 0.85
rcv_priority_frameMethod · 0.85
rcv_rst_stream_frameMethod · 0.85
rcv_settings_frameMethod · 0.85
rcv_ping_frameMethod · 0.85
rcv_goaway_frameMethod · 0.85
rcv_frameMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected