Initial commit: created project structure, makefile, some static files for future server tests and interphase to create a listening socket

This commit is contained in:
2020-06-22 15:59:38 +05:00
commit 2b86380ff4
13 changed files with 245 additions and 0 deletions

2
include/netw.h Normal file
View File

@ -0,0 +1,2 @@
int get_listener_socket(char *port);
void *get_in_addr(struct sockaddr *sa);

1
include/utils.h Normal file
View File

@ -0,0 +1 @@
void err_msg(char *msg);