REORG: quic: Move some QUIC CLI code to its C file

Move init_quic() from quic_conn.c to quic_cli.c and rename it to cli_quic_init().
This commit is contained in:
Frédéric Lécaille 2023-11-23 15:57:53 +01:00
parent 21615d4376
commit 1564ec0a93
2 changed files with 10 additions and 11 deletions

View File

@ -401,3 +401,13 @@ static struct cli_kw_list cli_kws = {{ }, {
INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
static void cli_quic_init()
{
int thr;
for (thr = 0; thr < MAX_THREADS; ++thr) {
LIST_INIT(&ha_thread_ctx[thr].quic_conns);
LIST_INIT(&ha_thread_ctx[thr].quic_conns_clo);
}
}
INITCALL0(STG_INIT, cli_quic_init);

View File

@ -2048,17 +2048,6 @@ void qc_finalize_affinity_rebind(struct quic_conn *qc)
TRACE_LEAVE(QUIC_EV_CONN_SET_AFFINITY, qc);
}
static void init_quic()
{
int thr;
for (thr = 0; thr < MAX_THREADS; ++thr) {
LIST_INIT(&ha_thread_ctx[thr].quic_conns);
LIST_INIT(&ha_thread_ctx[thr].quic_conns_clo);
}
}
INITCALL0(STG_INIT, init_quic);
/*
* Local variables:
* c-indent-level: 8