From a4940279d373dc9b9a5526498e390e31d6a8efec Mon Sep 17 00:00:00 2001 From: David Härdeman Date: Tue, 23 Jun 2020 12:52:36 +0200 Subject: Remove allocations from server-rcon in preparation for splitting out rcon protocol handling --- server.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'server.h') diff --git a/server.h b/server.h index 223c837..ff4c28e 100644 --- a/server.h +++ b/server.h @@ -53,8 +53,10 @@ struct server { char *systemd_obj; /* For rcon connections */ - struct rcon *rcon; char *rcon_password; + struct connection rcon_conn; + struct uring_task rcon_task; + struct uring_task_buf rcon_tbuf; /* For announce messages */ struct uring_task ann_task; -- cgit v1.2.3