Lines Matching refs:f

265             OSSL_QUIC_FRAME_RESET_STREAM f;  in log_frame_actual()  local
267 if (!ossl_quic_wire_decode_frame_reset_stream(pkt, &f)) in log_frame_actual()
271 QLOG_U64("stream_id", f.stream_id); in log_frame_actual()
272 QLOG_U64("error_code", f.app_error_code); in log_frame_actual()
273 QLOG_U64("final_size", f.final_size); in log_frame_actual()
278 OSSL_QUIC_FRAME_STOP_SENDING f; in log_frame_actual() local
280 if (!ossl_quic_wire_decode_frame_stop_sending(pkt, &f)) in log_frame_actual()
284 QLOG_U64("stream_id", f.stream_id); in log_frame_actual()
285 QLOG_U64("error_code", f.app_error_code); in log_frame_actual()
290 OSSL_QUIC_FRAME_CRYPTO f; in log_frame_actual() local
292 if (!ossl_quic_wire_decode_frame_crypto(pkt, 1, &f)) in log_frame_actual()
296 QLOG_U64("offset", f.offset); in log_frame_actual()
297 QLOG_U64("payload_length", f.len); in log_frame_actual()
298 *need_skip += (size_t)f.len; in log_frame_actual()
310 OSSL_QUIC_FRAME_STREAM f; in log_frame_actual() local
312 if (!ossl_quic_wire_decode_frame_stream(pkt, 1, &f)) in log_frame_actual()
316 QLOG_U64("stream_id", f.stream_id); in log_frame_actual()
317 QLOG_U64("offset", f.offset); in log_frame_actual()
318 QLOG_U64("payload_length", f.len); in log_frame_actual()
319 QLOG_BOOL("explicit_length", f.has_explicit_len); in log_frame_actual()
320 if (f.is_fin) in log_frame_actual()
322 *need_skip = f.has_explicit_len in log_frame_actual()
323 ? *need_skip + (size_t)f.len : SIZE_MAX; in log_frame_actual()
388 OSSL_QUIC_FRAME_CONN_CLOSE f; in log_frame_actual() local
390 if (!ossl_quic_wire_decode_frame_conn_close(pkt, &f)) in log_frame_actual()
394 QLOG_STR("error_space", f.is_app ? "application" : "transport"); in log_frame_actual()
395 QLOG_U64("error_code_value", f.error_code); in log_frame_actual()
396 if (f.is_app) in log_frame_actual()
397 QLOG_U64("error_code", f.error_code); in log_frame_actual()
398 if (!f.is_app && f.frame_type != 0) in log_frame_actual()
399 QLOG_U64("trigger_frame_type", f.frame_type); in log_frame_actual()
400 QLOG_STR_LEN("reason", f.reason, f.reason_len); in log_frame_actual()
413 OSSL_QUIC_FRAME_NEW_CONN_ID f; in log_frame_actual() local
415 if (!ossl_quic_wire_decode_frame_new_conn_id(pkt, &f)) in log_frame_actual()
419 QLOG_U64("sequence_number", f.seq_num); in log_frame_actual()
420 QLOG_U64("retire_prior_to", f.retire_prior_to); in log_frame_actual()
421 QLOG_CID("connection_id", &f.conn_id); in log_frame_actual()
423 f.stateless_reset.token, in log_frame_actual()
424 sizeof(f.stateless_reset.token)); in log_frame_actual()