From 36e6b03b1122ec72d518a6944f30cd7d910505a4 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Thu, 9 Feb 2017 14:53:52 +0100 Subject: sys: add sock_in and sock_in6 types --- sys/socket_amd64.const | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'sys/socket_amd64.const') diff --git a/sys/socket_amd64.const b/sys/socket_amd64.const index fe4c4b0a9..65dd51450 100644 --- a/sys/socket_amd64.const +++ b/sys/socket_amd64.const @@ -49,7 +49,40 @@ SOF_TIMESTAMPING_TX_ACK = 512 SOF_TIMESTAMPING_TX_HARDWARE = 1 SOF_TIMESTAMPING_TX_SCHED = 256 SOF_TIMESTAMPING_TX_SOFTWARE = 2 +SOL_AAL = 265 +SOL_ALG = 279 +SOL_ATALK = 258 +SOL_ATM = 264 +SOL_AX25 = 257 +SOL_BLUETOOTH = 274 +SOL_CAIF = 278 +SOL_DCCP = 269 +SOL_DECNET = 261 +SOL_ICMPV6 = 58 +SOL_IP = 0 +SOL_IPV6 = 41 +SOL_IPX = 256 +SOL_IRDA = 266 +SOL_IUCV = 277 +SOL_KCM = 281 +SOL_LLC = 268 +SOL_NETBEUI = 267 +SOL_NETLINK = 270 +SOL_NETROM = 259 +SOL_NFC = 280 +SOL_PACKET = 263 +SOL_PNPIPE = 275 +SOL_PPPOL2TP = 273 +SOL_RAW = 255 +SOL_RDS = 276 +SOL_ROSE = 260 +SOL_RXRPC = 272 +SOL_SCTP = 132 SOL_SOCKET = 1 +SOL_TCP = 6 +SOL_TIPC = 271 +SOL_UDP = 17 +SOL_UDPLITE = 136 SO_ACCEPTCONN = 30 SO_ATTACH_BPF = 50 SO_ATTACH_FILTER = 26 -- cgit mrf-deployment From 52601ba68852d4498791306ac3d8540aaa7354a1 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Thu, 9 Feb 2017 16:31:44 +0100 Subject: sys: fix socket.txt include --- sys/socket.txt | 1 + sys/socket_amd64.const | 1 + sys/socket_arm64.const | 1 + sys/socket_ppc64le.const | 1 + 4 files changed, 4 insertions(+) (limited to 'sys/socket_amd64.const') diff --git a/sys/socket.txt b/sys/socket.txt index dcc1a6eec..4c628d0a7 100644 --- a/sys/socket.txt +++ b/sys/socket.txt @@ -4,6 +4,7 @@ include include include +include include resource sock[fd] diff --git a/sys/socket_amd64.const b/sys/socket_amd64.const index 65dd51450..0af36e1b4 100644 --- a/sys/socket_amd64.const +++ b/sys/socket_amd64.const @@ -9,6 +9,7 @@ AF_NETLINK = 16 AF_PACKET = 17 AF_UNIX = 1 AF_X25 = 9 +IPPROTO_ICMP = 1 MSG_BATCH = 262144 MSG_CMSG_CLOEXEC = 1073741824 MSG_CONFIRM = 2048 diff --git a/sys/socket_arm64.const b/sys/socket_arm64.const index e20a47fe3..5dc6b5daf 100644 --- a/sys/socket_arm64.const +++ b/sys/socket_arm64.const @@ -9,6 +9,7 @@ AF_NETLINK = 16 AF_PACKET = 17 AF_UNIX = 1 AF_X25 = 9 +IPPROTO_ICMP = 1 MSG_BATCH = 262144 MSG_CMSG_CLOEXEC = 1073741824 MSG_CONFIRM = 2048 diff --git a/sys/socket_ppc64le.const b/sys/socket_ppc64le.const index cf744c72b..ac4d19c90 100644 --- a/sys/socket_ppc64le.const +++ b/sys/socket_ppc64le.const @@ -9,6 +9,7 @@ AF_NETLINK = 16 AF_PACKET = 17 AF_UNIX = 1 AF_X25 = 9 +IPPROTO_ICMP = 1 MSG_BATCH = 262144 MSG_CMSG_CLOEXEC = 1073741824 MSG_CONFIRM = 2048 -- cgit mrf-deployment