HomeSort by: relevance | last modified time | path
    Searched defs:is_fin (Results 1 - 5 of 5) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_fc.h 142 unsigned char error_code, has_cwm_changed, is_fin, standalone; member in struct:quic_rxfc_st
187 * is_fin should be 1 if the STREAM frame had the FIN flag set and 0 otherwise.
200 uint64_t end, int is_fin);
quic_wire.h 174 unsigned int is_fin : 1; member in struct:ossl_quic_frame_stream_st
305 * If f->is_fin is non-zero, the frame is marked as the final frame in the
595 * f->is_fin is set according to whether the frame was marked as ending the
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_tserver.c 259 int is_fin = 0; local
287 bytes_read, &is_fin))
306 if (is_fin)
321 int is_fin = 0; local
342 &bytes_read, &is_fin))
345 if (is_fin && bytes_read == 0) {
349 &bytes_read, &is_fin))
352 assert(is_fin && bytes_read == 0);
quic_channel.c 979 int is_fin = 0; local
984 if (!ossl_quic_rstream_available(rstream, &avail, &is_fin))
995 int is_fin = 0; /* crypto stream is never finished, so we don't use this */ local
1025 &is_fin);
quic_impl.c 2940 int is_fin = 0, err, eos; local
2954 bytes_read, &is_fin))
2959 bytes_read, &is_fin))
2980 if (is_fin && !peek) {
2991 if (*bytes_read == 0 && is_fin) {

Completed in 30 milliseconds