diff options
Diffstat (limited to 'app/v3_c/src/myhttpd.c')
-rw-r--r-- | app/v3_c/src/myhttpd.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/v3_c/src/myhttpd.c b/app/v3_c/src/myhttpd.c new file mode 100644 index 0000000..d662dd3 --- /dev/null +++ b/app/v3_c/src/myhttpd.c @@ -0,0 +1,21 @@ +#include <sys/types.h> +#include <sys/socket.h> +#include <netinet/in.h> +#include <arpa/inet.h> + +#include <stdio.h> +#include <stdlib.h> +#include <errno.h> + +#include "myhttpd.h" + +int main() { + //int res; + + int sockServ; + + sockServ = socket(AF_INET, SOCK_STREAM, 0); + if (sockServ -1) { perror("socket"); exit(1); } + + return 0; +} |