| 26 | #include "proxy/http3/Http3FrameCounter.h" |
| 27 | |
| 28 | std::vector<Http3FrameType> |
| 29 | Http3FrameCounter::interests() |
| 30 | { |
| 31 | return {Http3FrameType::DATA, Http3FrameType::HEADERS, Http3FrameType::X_RESERVED_1, Http3FrameType::CANCEL_PUSH, |
| 32 | Http3FrameType::SETTINGS, Http3FrameType::PUSH_PROMISE, Http3FrameType::X_RESERVED_2, Http3FrameType::GOAWAY, |
| 33 | Http3FrameType::X_RESERVED_3, Http3FrameType::X_RESERVED_4, Http3FrameType::MAX_PUSH_ID, Http3FrameType::X_MAX_DEFINED, |
| 34 | Http3FrameType::UNKNOWN}; |
| 35 | } |
| 36 | |
| 37 | Http3ErrorUPtr |
| 38 | Http3FrameCounter::handle_frame(std::shared_ptr<const Http3Frame> frame, Http3StreamType /* s_type ATS_UNUSED */) |