From d461ba6f298b37e1c74a194e5319b3cd8bf4b74f Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 23 Jan 2023 10:09:34 +0100 Subject: [PATCH] Fix typo in workers.c --- src/workers.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/workers.c b/src/workers.c index 3485e23..4ef2e0a 100644 --- a/src/workers.c +++ b/src/workers.c @@ -12,14 +12,14 @@ #include "worker/func.h" #include "async.h" -static mpmc_t tcp_acceptor_ctx, request_handler_ctx, local_handler_ctx, fastcgi_handler_cxt, proxy_handler_ctx, +static mpmc_t tcp_acceptor_ctx, request_handler_ctx, local_handler_ctx, fastcgi_handler_ctx, proxy_handler_ctx, ws_frame_handler_ctx; int workers_init(void) { mpmc_init(&tcp_acceptor_ctx, 8, 64, (void (*)(void *)) tcp_acceptor_func, "tcp"); mpmc_init(&request_handler_ctx, 16, 64, (void (*)(void *)) request_handler_func, "req"); mpmc_init(&local_handler_ctx, 16, 64, (void (*)(void *)) local_handler_func, "local"); - mpmc_init(&fastcgi_handler_cxt, 16, 64, (void (*)(void *)) fastcgi_handler_func, "fcgi"); + mpmc_init(&fastcgi_handler_ctx, 16, 64, (void (*)(void *)) fastcgi_handler_func, "fcgi"); mpmc_init(&proxy_handler_ctx, 16, 64, (void (*)(void *)) proxy_handler_func, "proxy"); mpmc_init(&ws_frame_handler_ctx, 16, 64, (void (*)(void *)) ws_frame_handler_func, "ws"); return -1; @@ -28,7 +28,7 @@ int workers_init(void) { void workers_stop(void) { mpmc_stop(&tcp_acceptor_ctx); mpmc_stop(&local_handler_ctx); - mpmc_stop(&fastcgi_handler_cxt); + mpmc_stop(&fastcgi_handler_ctx); mpmc_stop(&proxy_handler_ctx); mpmc_stop(&request_handler_ctx); mpmc_stop(&ws_frame_handler_ctx); @@ -37,7 +37,7 @@ void workers_stop(void) { void workers_destroy(void) { mpmc_destroy(&tcp_acceptor_ctx); mpmc_destroy(&local_handler_ctx); - mpmc_destroy(&fastcgi_handler_cxt); + mpmc_destroy(&fastcgi_handler_ctx); mpmc_destroy(&proxy_handler_ctx); mpmc_destroy(&request_handler_ctx); mpmc_destroy(&ws_frame_handler_ctx); @@ -68,7 +68,7 @@ int local_handle(client_ctx_t *ctx) { } int fastcgi_handle(client_ctx_t *ctx) { - return mpmc_queue(&fastcgi_handler_cxt, ctx); + return mpmc_queue(&fastcgi_handler_ctx, ctx); } int proxy_handle(client_ctx_t *ctx) {