From 96248470d2994d7e4ef42acbcee431520acd49cf Mon Sep 17 00:00:00 2001 From: Alexander Richards Date: Mon, 9 Oct 2023 08:57:25 +0200 Subject: [PATCH 1/2] abis/linux: add missing IP defines --- abis/linux/in.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/abis/linux/in.h b/abis/linux/in.h index 55a7e89341..d06c9e2c74 100644 --- a/abis/linux/in.h +++ b/abis/linux/in.h @@ -144,6 +144,9 @@ struct group_source_req { #define IP_TOS 1 #define IP_TTL 2 +#define IP_HDRINCL 3 +#define IP_OPTIONS 4 +#define IP_RECVOPTS 6 #define IP_PKTINFO 8 #define IP_PKTOPTIONS 9 #define IP_MTU_DISCOVER 10 From b484e5fa5285d1ddb7572dfa66977bc2716621de Mon Sep 17 00:00:00 2001 From: no92 Date: Mon, 9 Oct 2023 09:04:32 +0200 Subject: [PATCH 2/2] abis/linux: define SO_DEBUG --- abis/linux/socket.h | 1 + 1 file changed, 1 insertion(+) diff --git a/abis/linux/socket.h b/abis/linux/socket.h index f3dc603f18..713d532858 100644 --- a/abis/linux/socket.h +++ b/abis/linux/socket.h @@ -164,6 +164,7 @@ struct cmsghdr { #define AF_XDP PF_XDP #define AF_MAX PF_MAX +#define SO_DEBUG 1 #define SO_REUSEADDR 2 #define SO_TYPE 3 #define SO_ERROR 4