Lines Matching refs:http2_handler
55 auto handler = static_cast<http2_handler *>(user_data); in on_begin_headers_callback()
73 auto handler = static_cast<http2_handler *>(user_data); in on_header_callback()
127 auto handler = static_cast<http2_handler *>(user_data); in on_frame_recv_callback()
167 auto handler = static_cast<http2_handler *>(user_data); in on_data_chunk_recv_callback()
184 auto handler = static_cast<http2_handler *>(user_data); in on_stream_close_callback()
202 auto handler = static_cast<http2_handler *>(user_data); in on_frame_send_callback()
237 http2_handler::http2_handler(boost::asio::io_service &io_service, in http2_handler() function in nghttp2::asio_http2::server::http2_handler
252 http2_handler::~http2_handler() { in ~http2_handler()
261 const std::string &http2_handler::http_date() { in http_date()
270 int http2_handler::start() { in start()
307 stream *http2_handler::create_stream(int32_t stream_id) { in create_stream()
314 void http2_handler::close_stream(int32_t stream_id) { in close_stream()
318 stream *http2_handler::find_stream(int32_t stream_id) { in find_stream()
327 void http2_handler::call_on_request(stream &strm) { in call_on_request()
332 bool http2_handler::should_stop() const { in should_stop()
337 int http2_handler::start_response(stream &strm) { in start_response()
378 int http2_handler::submit_trailer(stream &strm, header_map h) { in submit_trailer()
399 void http2_handler::enter_callback() { in enter_callback()
404 void http2_handler::leave_callback() { in leave_callback()
409 void http2_handler::stream_error(int32_t stream_id, uint32_t error_code) { in stream_error()
414 void http2_handler::signal_write() { in signal_write()
422 void http2_handler::initiate_write() { in initiate_write()
427 void http2_handler::resume(stream &strm) { in resume()
432 response *http2_handler::push_promise(boost::system::error_code &ec, in push_promise()
481 boost::asio::io_service &http2_handler::io_service() { return io_service_; } in io_service()
483 const boost::asio::ip::tcp::endpoint &http2_handler::remote_endpoint() { in remote_endpoint()
487 callback_guard::callback_guard(http2_handler &h) : handler(h) { in callback_guard()