Home
last modified time | relevance | path

Searched refs:left_connhd_len_ (Results 1 – 2 of 2) sorted by relevance

/third_party/nghttp2/src/
Dshrpx_client_handler.cc312 auto nread = std::min(left_connhd_len_, rb_.rleft()); in upstream_http2_connhd_read()
313 if (memcmp(&NGHTTP2_CLIENT_MAGIC[NGHTTP2_CLIENT_MAGIC_LEN - left_connhd_len_], in upstream_http2_connhd_read()
323 left_connhd_len_ -= nread; in upstream_http2_connhd_read()
327 if (left_connhd_len_ == 0) { in upstream_http2_connhd_read()
341 auto nread = std::min(left_connhd_len_, rb_.rleft()); in upstream_http1_connhd_read()
342 if (memcmp(&NGHTTP2_CLIENT_MAGIC[NGHTTP2_CLIENT_MAGIC_LEN - left_connhd_len_], in upstream_http1_connhd_read()
350 left_connhd_len_ = NGHTTP2_CLIENT_MAGIC_LEN; in upstream_http1_connhd_read()
361 left_connhd_len_ -= nread; in upstream_http1_connhd_read()
365 if (left_connhd_len_ == 0) { in upstream_http1_connhd_read()
409 left_connhd_len_(NGHTTP2_CLIENT_MAGIC_LEN), in ClientHandler()
Dshrpx_client_handler.h206 size_t left_connhd_len_; variable