]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: quic: Split QUIC connection code into three parts
authorFrédéric Lécaille <flecaille@haproxy.com>
Tue, 25 Jul 2023 13:42:16 +0000 (15:42 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Thu, 27 Jul 2023 08:51:03 +0000 (10:51 +0200)
commit444c1a41138ad8f50cab98755a3549695a146e10
tree2d95b0e057686f39059e6f290f4aeaa06ad5d030
parent2fe50a01cae9b2231cbdbe6584582a09f736d6f6
MINOR: quic: Split QUIC connection code into three parts

Move the TX part of the code to quic_tx.c.
Add quic_tx-t.h and quic_tx.h headers for this TX part code.
The definition of quic_tx_packet struct has been move from quic_conn-t.h to
quic_tx-t.h.

Same thing for the TX part:
Move the RX part of the code to quic_rx.c.
Add quic_rx-t.h and quic_rx.h headers for this TX part code.
The definition of quic_rx_packet struct has been move from quic_conn-t.h to
quic_rx-t.h.
14 files changed:
Makefile
include/haproxy/quic_conn-t.h
include/haproxy/quic_conn.h
include/haproxy/quic_frame.h
include/haproxy/quic_rx-t.h [new file with mode: 0644]
include/haproxy/quic_rx.h [new file with mode: 0644]
include/haproxy/quic_tls.h
include/haproxy/quic_tx-t.h [new file with mode: 0644]
include/haproxy/quic_tx.h [new file with mode: 0644]
src/quic_conn.c
src/quic_frame.c
src/quic_rx.c [new file with mode: 0644]
src/quic_sock.c
src/quic_tx.c [new file with mode: 0644]