Searched refs:want_send (Results 1 - 5 of 5) sorted by relevance
/third_party/curl/lib/vquic/ |
H A D | curl_ngtcp2.c | 745 bool want_recv, want_send; in cf_ngtcp2_adjust_pollset() local 750 Curl_pollset_check(data, ps, ctx->q.sockfd, &want_recv, &want_send); in cf_ngtcp2_adjust_pollset() 751 if(want_recv || want_send) { in cf_ngtcp2_adjust_pollset() 757 c_exhaust = want_send && (!ngtcp2_conn_get_cwnd_left(ctx->qconn) || in cf_ngtcp2_adjust_pollset() 759 s_exhaust = want_send && stream && stream->id >= 0 && in cf_ngtcp2_adjust_pollset() 762 want_send = (!s_exhaust && want_send) || in cf_ngtcp2_adjust_pollset() 765 Curl_pollset_set(data, ps, ctx->q.sockfd, want_recv, want_send); in cf_ngtcp2_adjust_pollset()
|
H A D | curl_quiche.c | 1079 bool want_recv, want_send; in cf_quiche_adjust_pollset() local 1084 Curl_pollset_check(data, ps, ctx->q.sockfd, &want_recv, &want_send); in cf_quiche_adjust_pollset() 1085 if(want_recv || want_send) { in cf_quiche_adjust_pollset() 1091 s_exhaust = want_send && stream && stream->id >= 0 && in cf_quiche_adjust_pollset() 1094 want_send = (!s_exhaust && want_send) || in cf_quiche_adjust_pollset() 1097 Curl_pollset_set(data, ps, ctx->q.sockfd, want_recv, want_send); in cf_quiche_adjust_pollset()
|
H A D | curl_osslq.c | 2099 bool want_recv, want_send; in cf_osslq_adjust_pollset() local 2100 Curl_pollset_check(data, ps, ctx->q.sockfd, &want_recv, &want_send); in cf_osslq_adjust_pollset() 2101 if(want_recv || want_send) { in cf_osslq_adjust_pollset()
|
/third_party/curl/lib/ |
H A D | http2.c | 2331 bool want_recv, want_send; in cf_h2_adjust_pollset() local 2337 Curl_pollset_check(data, ps, sock, &want_recv, &want_send); in cf_h2_adjust_pollset() 2338 if(want_recv || want_send) { in cf_h2_adjust_pollset() 2344 c_exhaust = want_send && !nghttp2_session_get_remote_window_size(ctx->h2); in cf_h2_adjust_pollset() 2345 s_exhaust = want_send && stream && stream->id >= 0 && in cf_h2_adjust_pollset() 2349 want_send = (!s_exhaust && want_send) || in cf_h2_adjust_pollset() 2352 Curl_pollset_set(data, ps, sock, want_recv, want_send); in cf_h2_adjust_pollset()
|
H A D | cf-h2-proxy.c | 1177 bool want_recv, want_send; in cf_h2_proxy_adjust_pollset() local 1179 Curl_pollset_check(data, ps, sock, &want_recv, &want_send); in cf_h2_proxy_adjust_pollset() 1180 if(ctx->h2 && (want_recv || want_send)) { in cf_h2_proxy_adjust_pollset() 1190 want_send = (!s_exhaust && want_send) || in cf_h2_proxy_adjust_pollset() 1193 Curl_pollset_set(data, ps, sock, want_recv, want_send); in cf_h2_proxy_adjust_pollset()
|
Completed in 14 milliseconds