CLEANUP: quic: use static qualifer on quic_close

quic_close can be used through xprt-ops and can thus be kept as a static
symbol.
This commit is contained in:
Amaury Denoyelle 2022-04-05 17:34:18 +02:00
parent db71e3bd09
commit e0be573c1b

View File

@ -3859,7 +3859,7 @@ static void quic_conn_release(struct quic_conn *qc)
TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
}
void quic_close(struct connection *conn, void *xprt_ctx)
static void quic_close(struct connection *conn, void *xprt_ctx)
{
struct ssl_sock_ctx *conn_ctx = xprt_ctx;
struct quic_conn *qc = conn_ctx->qc;