Lines Matching refs:hdr
578 QUIC_PKT_HDR hdr; in ossl_quic_trace() local
588 if (ossl_quic_wire_decode_pkt_hdr(&pkt, 0, 0, 1, &hdr, NULL) != 1) in ossl_quic_trace()
593 BIO_printf(bio, " Packet Type: %s\n", packet_type(hdr.type)); in ossl_quic_trace()
594 if (hdr.type != QUIC_PKT_TYPE_1RTT) in ossl_quic_trace()
596 (unsigned long)hdr.version); in ossl_quic_trace()
598 put_conn_id(bio, &hdr.dst_conn_id); in ossl_quic_trace()
600 if (hdr.type != QUIC_PKT_TYPE_1RTT) { in ossl_quic_trace()
602 put_conn_id(bio, &hdr.src_conn_id); in ossl_quic_trace()
605 BIO_printf(bio, " Payload length: %zu\n", hdr.len); in ossl_quic_trace()
606 if (hdr.type == QUIC_PKT_TYPE_INITIAL) { in ossl_quic_trace()
608 put_token(bio, hdr.token, hdr.token_len); in ossl_quic_trace()
611 if (hdr.type != QUIC_PKT_TYPE_VERSION_NEG in ossl_quic_trace()
612 && hdr.type != QUIC_PKT_TYPE_RETRY) { in ossl_quic_trace()
615 for (i = 0; i < hdr.pn_len; i++) in ossl_quic_trace()
616 BIO_printf(bio, "%02x", hdr.pn[i]); in ossl_quic_trace()