Lines Matching full:frame

127  * QUIC Frame Logical Representations
131 /* QUIC Frame: ACK */
153 * num_ack_ranges must be greater than zero, as an ACK frame must
164 /* Returns 1 if the given frame contains the given PN. */
167 /* QUIC Frame: STREAM */
176 * not. If zero, the len field is not encoded and it is assumed the frame
179 * On decode, this determines whether the frame had an explicitly encoded
180 * length. If not set, the frame runs to the end of the packet and len has
189 /* QUIC Frame: CRYPTO */
196 /* QUIC Frame: RESET_STREAM */
203 /* QUIC Frame: STOP_SENDING */
209 /* QUIC Frame: NEW_CONNECTION_ID */
217 /* QUIC Frame: CONNECTION_CLOSE */
235 * frame consumes one byte; num_bytes specifies the number of bytes of padding
241 * Encodes a QUIC PING frame to the packet writer. This frame type takes
247 * Encodes a QUIC ACK frame to the packet writer, given a logical representation
248 * of the ACK frame.
265 * Encodes a QUIC RESET_STREAM frame to the packet writer, given a logical
266 * representation of the RESET_STREAM frame.
272 * Encodes a QUIC STOP_SENDING frame to the packet writer, given a logical
273 * representation of the STOP_SENDING frame.
279 * Encodes a QUIC CRYPTO frame header to the packet writer.
281 * To create a well-formed frame, the data written using this function must be
289 * CRYPTO frame header. Does not include the payload bytes in the count.
295 * Encodes a QUIC CRYPTO frame to the packet writer.
306 * Encodes a QUIC NEW_TOKEN frame to the packet writer.
313 * Encodes a QUIC STREAM frame's header to the packet writer. The f->stream_id,
317 * If f->is_fin is non-zero, the frame is marked as the final frame in the
320 * If f->has_explicit_len is zerro, the frame is assumed to be the final frame
324 * To create a well-formed frame, the data written using this function must be
332 * STREAM frame header. Does not include the payload bytes in the count.
340 * well-formed QUIC STREAM frame in one call.
351 * Encodes a QUIC MAX_DATA frame to the packet writer.
357 * Encodes a QUIC MAX_STREAM_DATA frame to the packet writer.
364 * Encodes a QUIC MAX_STREAMS frame to the packet writer.
375 * Encodes a QUIC DATA_BLOCKED frame to the packet writer.
381 * Encodes a QUIC STREAM_DATA_BLOCKED frame to the packet writer.
387 * Encodes a QUIC STREAMS_BLOCKED frame to the packet writer.
398 * Encodes a QUIC NEW_CONNECTION_ID frame to the packet writer, given a logical
399 * representation of the NEW_CONNECTION_ID frame.
408 * Encodes a QUIC RETIRE_CONNECTION_ID frame to the packet writer.
414 * Encodes a QUIC PATH_CHALLENGE frame to the packet writer.
420 * Encodes a QUIC PATH_RESPONSE frame to the packet writer.
426 * Encodes a QUIC CONNECTION_CLOSE frame to the packet writer, given a logical
427 * representation of the CONNECTION_CLOSE frame.
438 * Encodes a QUIC HANDSHAKE_DONE frame to the packet writer. This frame type
481 * - A frame decode function is called but the frame in the PACKET's buffer
484 * - A variable-length field in the encoded frame appears to exceed the bounds
488 * frame (including the initial type field), and consume an entire frame
490 * already discerned the frame type using ossl_quic_wire_peek_frame_header().
494 * Decodes the type field header of a QUIC frame (without advancing the current
495 * position). This can be used to determine the frame type and determine which
496 * frame decoding function to call.
508 * Determines how many ranges are needed to decode a QUIC ACK frame.
519 * Decodes a QUIC ACK frame. The ack_ranges field of the passed structure should
523 * *total_ranges is written with the number of ranges in the decoded frame,
528 * number of ranges in the decoded frame. This is the number of entries in the
532 * If the number of ACK ranges in the decoded frame exceeds that in
537 * If ack is NULL, the frame is still decoded, but only *total_ranges is
543 * to encode the frame.
551 * Decodes a QUIC RESET_STREAM frame.
557 * Decodes a QUIC STOP_SENDING frame.
563 * Decodes a QUIC CRYPTO frame.
567 * set to 1 then reading the PACKET stops after the frame header and f->data is
574 * Decodes a QUIC NEW_TOKEN frame. *token is written with a pointer to the token
582 * Decodes a QUIC STREAM frame.
584 * If nodata is set to 1 then reading the PACKET stops after the frame header
588 * If the frame did not contain an offset field, f->offset is set to 0, as the
591 * If the frame contained a length field, f->has_explicit_len is set to 1 and
595 * If the frame did not contain a length field, this means that the frame runs
607 * f->is_fin is set according to whether the frame was marked as ending the
614 * Decodes a QUIC MAX_DATA frame. The Maximum Data field is written to
621 * Decodes a QUIC MAX_STREAM_DATA frame. The Stream ID is written to *stream_id
628 * Decodes a QUIC MAX_STREAMS frame. The Maximum Streams field is written to
632 * denoted by the frame type; the caller should examine the frame type to
639 * Decodes a QUIC DATA_BLOCKED frame. The Maximum Data field is written to
646 * Decodes a QUIC STREAM_DATA_BLOCKED frame. The Stream ID and Maximum Stream
654 * Decodes a QUIC STREAMS_BLOCKED frame. The Maximum Streams field is written to
658 * denoted by the frame type; the caller should examine the frame type to
666 * Decodes a QUIC NEW_CONNECTION_ID frame. The logical representation of the
667 * frame is written to *f.
678 * Decodes a QUIC RETIRE_CONNECTION_ID frame. The Sequence Number field
685 * Decodes a QUIC PATH_CHALLENGE frame. The Data field is written to *data.
691 * Decodes a QUIC PATH_CHALLENGE frame. The Data field is written to *data.
697 * Decodes a QUIC CONNECTION_CLOSE frame. The logical representation
698 * of the frame is written to *f.
720 * Decodes a PING frame. The frame has no arguments.
725 * Decodes a HANDSHAKE_DONE frame. The frame has no arguments.