Home
last modified time | relevance | path

Searched refs:http2session (Results 1 – 6 of 6) sorted by relevance

/third_party/nghttp2/src/
Dshrpx_http2_session.cc67 auto http2session = static_cast<Http2Session *>(w->data); in connchk_timeout_cb() local
71 switch (http2session->get_connection_check_state()) { in connchk_timeout_cb()
75 SSLOG(INFO, http2session) << "ping timeout"; in connchk_timeout_cb()
78 delete http2session; in connchk_timeout_cb()
83 SSLOG(INFO, http2session) << "connection check required"; in connchk_timeout_cb()
85 http2session->set_connection_check_state(ConnectionCheck::REQUIRED); in connchk_timeout_cb()
92 auto http2session = static_cast<Http2Session *>(w->data); in settings_timeout_cb() local
95 SSLOG(INFO, http2session) << "SETTINGS timeout"; in settings_timeout_cb()
98 downstream_failure(http2session->get_addr(), http2session->get_raddr()); in settings_timeout_cb()
100 if (http2session->terminate_session(NGHTTP2_SETTINGS_TIMEOUT) != 0) { in settings_timeout_cb()
[all …]
Dshrpx_http2_downstream_connection.h44 Http2DownstreamConnection(Http2Session *http2session);
Dshrpx_http2_downstream_connection.cc50 Http2DownstreamConnection::Http2DownstreamConnection(Http2Session *http2session) in Http2DownstreamConnection() argument
53 http2session_(http2session), in Http2DownstreamConnection()
Dshrpx_client_handler.cc1012 auto http2session = get_http2_session(group, addr); in get_downstream_connection() local
1013 auto dconn = std::make_unique<Http2DownstreamConnection>(http2session); in get_downstream_connection()
/third_party/node/doc/api/
Dhttp2.md116 `http2session.type` property can be used to determine the mode in which an
219 When using `http2session.settings()` to submit new settings, the modified
316 After the `http2session.setTimeout()` method is used to set the timeout period
326 #### `http2session.alpnProtocol`
338 #### `http2session.close([callback])`
347 created. Once closed, `http2session.destroy()` *might* be called if there
353 #### `http2session.closed`
363 #### `http2session.connecting`
374 #### `http2session.destroy([error][, code])`
395 #### `http2session.destroyed`
[all …]
Derrors.md1159 Out of memory when using the `http2session.setLocalWindowSize(windowSize)` API.