/
githubmirror
/
nghttp2
Обзор
Документация
Войти
/
githubmirror
/
nghttp2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/h2load_http3_session.h
98 строк
4 KB
Tatsuhiro Tsujikawa
src: MSDMI part3
12 май 2026, 17:32
12 май 2026, 17:32
5d3c693
Код
Авторство
О чём код?
/* * nghttp2 - HTTP/2 C Library * * Copyright (c) 2019 nghttp2 contributors * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef H2LOAD_HTTP3_SESSION_H #define H2LOAD_HTTP3_SESSION_H #include "h2load_session.h" #include <nghttp3/nghttp3.h> namespace h2load { struct Client; class Http3Session : public Session { public: Http3Session(Client *client); ~Http3Session() override; void on_connect() override; std::expected<void, Error> submit_request() override; std::expected<void, Error> on_read(std::span<const uint8_t> data) override { return std::unexpected{Error::NOT_IMPLEMENTED}; } std::expected<void, Error> on_write() override { return std::unexpected{Error::NOT_IMPLEMENTED}; } void terminate() override; size_t max_concurrent_streams() override; std::expected<void, Error> init_conn(); void stream_close(int64_t stream_id, uint64_t app_error_code); void end_stream(int64_t stream_id); void recv_data(int64_t stream_id, std::span<const uint8_t> data); void consume(int64_t stream_id, size_t nconsumed); void begin_headers(int64_t stream_id); void recv_header(int64_t stream_id, std::span<const uint8_t> name, std::span<const uint8_t> value); std::expected<void, Error> stop_sending(int64_t stream_id, uint64_t app_error_code); std::expected<void, Error> reset_stream(int64_t stream_id, uint64_t app_error_code); std::expected<void, Error> close_stream(int64_t stream_id, uint64_t app_error_code); std::expected<void, Error> shutdown_stream_read(int64_t stream_id); std::expected<void, Error> extend_max_local_streams(); std::expected<void, Error> submit_request_internal(); std::expected<size_t, Error> read_stream(uint32_t flags, int64_t stream_id, std::span<const uint8_t> data); struct WriteResult { int64_t stream_id{-1}; std::span<nghttp3_vec> data; int fin{}; }; std::expected<WriteResult, Error> write_stream(std::span<nghttp3_vec> vec); void block_stream(int64_t stream_id); std::expected<void, Error> unblock_stream(int64_t stream_id); void shutdown_stream_write(int64_t stream_id); std::expected<void, Error> add_write_offset(int64_t stream_id, size_t ndatalen); std::expected<void, Error> add_ack_offset(int64_t stream_id, size_t datalen); void read_data(nghttp3_vec *vec, size_t veccnt, uint32_t *pflags); private: Client *client_; nghttp3_conn *conn_{}; size_t npending_request_{}; size_t reqidx_{}; }; } // namespace h2load #endif // H2LOAD_HTTP3_SESSION_H