initial version of hashmap works

This commit is contained in:
2024-11-09 20:43:12 +01:00
parent 51a309e55f
commit 5e5d25cd75
9 changed files with 51 additions and 28 deletions

View File

@@ -26,6 +26,5 @@ void epoll_ctl_add(int epfd, int sockfd, uint32_t events);
void epoll_ctl_del(int epfd, int sockfd);
void setnonblocking(int sockfd);
int handle_new_client(int sockfd, struct sockaddr_storage *their_sa, socklen_t *theirsa_size);
void print_client_ip(struct sockaddr_in *sin);
#endif