Make a struct for connections

This commit is contained in:
2023-02-02 01:14:29 -06:00
parent 8170b3aa90
commit dab8e0029e
5 changed files with 112 additions and 0 deletions
+2
View File
@@ -12,4 +12,6 @@ typedef struct Client* Client;
typedef struct Message* Message;
Client client_new(void* buffer, size_t size);
void client_connect(Client client);
Message poll_message(Client client);