]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: quic: Typo fix for quic_connection_id pool
authorFrédéric Lécaille <flecaille@haproxy.com>
Mon, 24 Apr 2023 16:20:44 +0000 (18:20 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Tue, 9 May 2023 08:48:40 +0000 (10:48 +0200)
Remove a "n" extra letter.

Should be backported to 2.7.

doc/management.txt
src/quic_conn.c

index 978b0482f4887d7bdd5ea671f9962b463ae9832c..4a5e0336148593aea04e635803dabd28fec72364 100644 (file)
@@ -2934,7 +2934,7 @@ show pools [byname|bysize|byusage] [match <pfx>] [<nb>]
       - Pool quic_crypto (1048 bytes) : 6685 allocated (7005880 bytes), ...
       - Pool quic_conn (4056 bytes) : 1337 allocated (5422872 bytes), ...
       - Pool quic_rxbuf (262168 bytes) : 8 allocated (2097344 bytes), ...
-      - Pool quic_connne (184 bytes) : 9359 allocated (1722056 bytes), ...
+      - Pool quic_conne (184 bytes) : 9359 allocated (1722056 bytes), ...
       - Pool quic_frame (184 bytes) : 7938 allocated (1460592 bytes), ...
       - Pool quic_tx_pac (152 bytes) : 6454 allocated (981008 bytes), ...
       - Pool quic_tls_ke (56 bytes) : 12033 allocated (673848 bytes), ...
index 849beb20bd9006a92158a5d558f949d0f10a00b1..096f5e388741e41e520f870a063dafff8cc160a7 100644 (file)
@@ -217,7 +217,7 @@ DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
                     "quic_conn_ctx", sizeof(struct ssl_sock_ctx));
 DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
 DECLARE_POOL(pool_head_quic_connection_id,
-             "quic_connnection_id", sizeof(struct quic_connection_id));
+             "quic_connection_id", sizeof(struct quic_connection_id));
 DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram));
 DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet", sizeof(struct quic_rx_packet));
 DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet", sizeof(struct quic_tx_packet));