]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: move qc_send_mux() prototype into quic_tx.h
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 24 Oct 2024 14:32:29 +0000 (16:32 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 31 Oct 2024 09:32:50 +0000 (10:32 +0100)
include/haproxy/quic_conn.h
include/haproxy/quic_tx.h
src/mux_quic.c

index 212e187ba667c88d54e29a5c04a1a2c724796de3..ebff2918641bb61851a3552f6b966ee6ad01d2bb 100644 (file)
@@ -163,7 +163,6 @@ void quic_set_connection_close(struct quic_conn *qc, const struct quic_err err);
 void quic_set_tls_alert(struct quic_conn *qc, int alert);
 int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len);
 int qc_check_dcid(struct quic_conn *qc, unsigned char *dcid, size_t dcid_len);
-int qc_send_mux(struct quic_conn *qc, struct list *frms);
 
 void qc_notify_err(struct quic_conn *qc);
 int qc_notify_send(struct quic_conn *qc);
index 55530d9fcab7edfc02b3be6f7dc9c4f4a37989f8..830e6f89c62e7e7811cb8d6caa42d390ea3af36c 100644 (file)
@@ -33,6 +33,8 @@ void qc_txb_release(struct quic_conn *qc);
 int qc_purge_txbuf(struct quic_conn *qc, struct buffer *buf);
 struct buffer *qc_get_txb(struct quic_conn *qc);
 
+int qc_send_mux(struct quic_conn *qc, struct list *frms);
+
 void qel_register_send(struct list *send_list, struct quic_enc_level *qel,
                        struct list *frms);
 int qel_need_sending(struct quic_enc_level *qel, struct quic_conn *qc);
index 302dc155b27db63acd6bd609d41da09908fa4912..84f92c55b86c27d1d2baef8203bba8a4810da161 100644 (file)
@@ -22,6 +22,7 @@
 #include <haproxy/quic_sock.h>
 #include <haproxy/quic_stream.h>
 #include <haproxy/quic_tp-t.h>
+#include <haproxy/quic_tx.h>
 #include <haproxy/session.h>
 #include <haproxy/ssl_sock-t.h>
 #include <haproxy/stconn.h>