diff options
| author | mrb0nk500 <b0nk@b0nk.xyz> | 2021-06-09 22:12:23 -0400 | 
|---|---|---|
| committer | mrb0nk500 <b0nk@b0nk.xyz> | 2021-06-09 22:12:23 -0400 | 
| commit | cbb37dfa84ff6cc72fc7091c2b3ffb84deb2d0d3 (patch) | |
| tree | 2940da71328d3a7b435ed3848f3cfb2cb9edfd93 | |
| parent | 750a6d8d361ba61e59b88d698d24189659637da0 (diff) | |
Added the socket, and network includes.
Forgot to add them. oof
| -rw-r--r-- | pullreqd.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| @@ -1,10 +1,15 @@ +#include <arpa/inet.h> +#include <errno.h> +#include <netinet/in.h>  #include <signal.h>  #include <stdio.h>  #include <stdint.h>  #include <stdlib.h>  #include <string.h> +#include <sys/socket.h>  #include <sys/stat.h>  #include <sys/types.h> +#include <sys/un.h>  #include <syslog.h>  #include <unistd.h>  #include "config.h" | 
