HomeSort by: relevance | last modified time | path
    Searched refs:stop_sending (Results 1 - 7 of 7) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_stream_map.c 620 /* RFC 9000 s. 3.3: No point sending STOP_SENDING if already reset. */
662 if (qs->stop_sending)
672 * Not really any point in STOP_SENDING if we already received all data.
677 * RFC 9000 s. 3.5: "STOP_SENDING SHOULD only be sent for a stream that
680 * No point in STOP_SENDING if the peer already reset their send part.
688 * the transport SHOULD signal this by sending a STOP_SENDING frame to
691 * Note that it does make sense to send STOP_SENDING for a receive part
698 qs->stop_sending = 1;
703 /* Called to mark STOP_SENDING for generation, or regeneration after loss. */
706 if (!qs->stop_sending)
    [all...]
quic_rx_depack.c 245 "STOP_SENDING frame for "
254 * RFC 9000 s. 3.5: Receiving a STOP_SENDING frame means we must respond in
591 * If we requested STOP_SENDING do not bother buffering the data. Note that
592 * this must happen after RXFC checks above as even if we sent STOP_SENDING
595 if (stream->stop_sending)
1176 /* STOP_SENDING frames are valid in 0RTT and 1RTT packets */
1182 "STOP_SENDING not valid in "
quic_impl.c 790 /* Do STOP_SENDING for the receive part, if applicable. */
4038 } else if ((!is_write && qs->stop_sending)
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_stream_map.h 96 * Application Error Code (AEC) used for STOP_SENDING frame.
97 * This is only valid if stop_sending is 1.
108 * Application Error Code (AEC) for incoming STOP_SENDING frame.
176 * Has STOP_SENDING been requested (by us)? Note that this is not the same
177 * as want_stop_sending below, as a STOP_SENDING frame may already have been
180 unsigned int stop_sending : 1; member in struct:quic_stream_st
184 * STOP_SENDING for transmission purposes.
186 /* Has our peer sent a STOP_SENDING frame? */
234 * STOP_SENDING
243 * Thus we can ignore STOP_SENDING frames for delete
    [all...]
  /src/usr.sbin/mrouted/
prune.c 1067 int stop_sending = 1; local
1079 stop_sending = 0;
1084 if (stop_sending) {
1126 int stop_sending; local
1221 stop_sending = 1;
1224 stop_sending = 0;
1228 if (stop_sending && !grplst_mem(vifi, prun_grp)) {
  /src/crypto/external/apache2/openssl/dist/demos/http3/
ossl-nghttp3.c 338 conn->stop_sending_cb = intl_callbacks.stop_sending;
344 intl_callbacks.stop_sending = h3_conn_stop_sending;
476 if (s->s == NULL /* If we already did STOP_SENDING, ignore this stream. */
644 /* Already did STOP_SENDING and threw away stream, ignore */
  /src/crypto/external/apache2/openssl/dist/test/
quic_txp_test.c 72 OSSL_QUIC_FRAME_STOP_SENDING stop_sending; member in union:helper::__anon175
263 #define OPK_STOP_SENDING 18 /* Mark stream for STOP_SENDING */
1022 /* 12. 1-RTT, STOP_SENDING */
1025 if (!TEST_uint64_t_eq(h->frame.stop_sending.stream_id, 42)
1026 || !TEST_uint64_t_eq(h->frame.stop_sending.app_error_code, 4568))
1429 &h.frame.stop_sending)))

Completed in 66 milliseconds