diff --git a/doc/management.txt b/doc/management.txt index 978b0482f..4a5e03361 100644 --- a/doc/management.txt +++ b/doc/management.txt @@ -2934,7 +2934,7 @@ show pools [byname|bysize|byusage] [match ] [] - 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), ... diff --git a/src/quic_conn.c b/src/quic_conn.c index 849beb20b..096f5e388 100644 --- a/src/quic_conn.c +++ b/src/quic_conn.c @@ -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));