summaryrefslogtreecommitdiff
path: root/server.h
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2022-05-10 03:09:47 +0200
committerJohnny Richard <johnny@johnnyrichard.com>2022-05-10 03:09:47 +0200
commit6c5276eb486f88b73c9309ffec713f1732922a02 (patch)
tree2997ced24529b8fe2814284a91753435a36311ea /server.h
parent31586df150671904bbd116534e38ecb1d4748962 (diff)
channel: Create channel and implement join msgHEADmaster
Diffstat (limited to 'server.h')
-rw-r--r--server.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/server.h b/server.h
index 1b2f564..b5088cc 100644
--- a/server.h
+++ b/server.h
@@ -31,6 +31,7 @@ typedef struct server {
int epoll_fd;
struct epoll_event events[MAXEVENTS];
hash_table_t *client_table;
+ hash_table_t *channel_table;
bool running;
} server_t;