From f027f1a3f7c45bafd7f99776548ef73ba3cc22ec Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 2 Mar 2018 16:28:00 +0100 Subject: sys/linux: use size attributes on structs 1. Add size attribte on sockaddr. 2. Remove sockaddr's that are larger than 16 bytes from sockaddr. 3. Add size attribute on sockaddr_storage which wasn't actually 128 bytes. 4. Add size attribute to ifreq. 5. Fix ifmap field types as uncovered by the size attributes. 6. Fix sockaddr_storage_tcp from struct to union which is should be. 7. Make sockaddr_un_file fixed size as it should be. 8. Fix some explicit paddings that were only correct for 64 bits. --- sys/linux/socket_386.const | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/linux/socket_386.const') diff --git a/sys/linux/socket_386.const b/sys/linux/socket_386.const index 505713c30..370dfc37f 100644 --- a/sys/linux/socket_386.const +++ b/sys/linux/socket_386.const @@ -119,6 +119,7 @@ IFF_TUN = 1 IFF_TUN_EXCL = 32768 IFF_VNET_HDR = 16384 IFNAMSIZ = 16 +IFREQ_SIZE = 32 IPPROTO_ICMP = 1 IPV4_FLOW = 16 IPV4_USER_FLOW = 13 @@ -215,6 +216,8 @@ SIOCSIFTXQLEN = 35139 SIOCSMIIREG = 35145 SIOCSPGRP = 35074 SIOCWANDEV = 35146 +SOCKADDR_SIZE = 16 +SOCKADDR_STORAGE_SIZE = 128 SOCK_CLOEXEC = 524288 SOCK_DCCP = 6 SOCK_DGRAM = 2 -- cgit mrf-deployment