summaryrefslogtreecommitdiff
path: root/pullreqd.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-09 22:12:23 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-09 22:12:23 -0400
commitcbb37dfa84ff6cc72fc7091c2b3ffb84deb2d0d3 (patch)
tree2940da71328d3a7b435ed3848f3cfb2cb9edfd93 /pullreqd.c
parent750a6d8d361ba61e59b88d698d24189659637da0 (diff)
Added the socket, and network includes.
Forgot to add them. oof
Diffstat (limited to 'pullreqd.c')
-rw-r--r--pullreqd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/pullreqd.c b/pullreqd.c
index c7764d7..ae61c54 100644
--- a/pullreqd.c
+++ b/pullreqd.c
@@ -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"