aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-06-26 11:07:59 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-06-26 09:16:38 +0000
commitc6d33a012816b8e651cfc2284a27e9659832143b (patch)
treeb72ad8e4198818f8e83ed5bad0523f3f36359f0d /executor
parent9db41fc9f106c9f5d3fc096ec450af590ee87cdb (diff)
executor: include missing header
FreeBSD says: executor/conn.h:100:3: error: unknown type name 'sockaddr_in'; did you mean 'sockaddr'? sockaddr_in saddr4 = {};
Diffstat (limited to 'executor')
-rw-r--r--executor/conn.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/executor/conn.h b/executor/conn.h
index 9371ddaee..ace7d187b 100644
--- a/executor/conn.h
+++ b/executor/conn.h
@@ -4,6 +4,7 @@
#include <arpa/inet.h>
#include <fcntl.h>
#include <netdb.h>
+#include <netinet/in.h>
#include <string.h>
#include <sys/select.h>
#include <sys/socket.h>