diff options
-rw-r--r-- | sys/sys/socket.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/socket.h b/sys/sys/socket.h index 4acff20..7209198 100644 --- a/sys/sys/socket.h +++ b/sys/sys/socket.h @@ -207,7 +207,8 @@ struct accept_filter_arg { #define AF_NETGRAPH 32 /* Netgraph sockets */ #define AF_SLOW 33 /* 802.3ad slow protocol */ #define AF_SCLUSTER 34 /* Sitara cluster protocol */ -#define AF_MAX 35 +#define AF_ARP 35 +#define AF_MAX 36 #endif /* @@ -290,6 +291,7 @@ struct sockaddr_storage { #define PF_NETGRAPH AF_NETGRAPH #define PF_SLOW AF_SLOW #define PF_SCLUSTER AF_SCLUSTER +#define PF_ARP AF_ARP #define PF_MAX AF_MAX |