Reorganize messages into module groups

This commit is contained in:
2023-02-02 01:14:29 -06:00
parent f0befa0b7b
commit 60673a5283
16 changed files with 271 additions and 314 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ Client client_new() {
struct Client* client = malloc(sizeof(struct Client));
memset(client, 0, sizeof(struct Client));
// TODO: Make this configurable
client->hostbyte = host2byte(DEFAULT_CLIENT_HOST, DEFAULT_CLIENT_INDEX);
client->hostbyte = host2byte(CLIENT_HOST, CLIENT_INDEX);
return client;
}