golang.org/x/net@v0.25.1-0.20240516223405-c87a5b62e243/ipv4/defs_darwin.go (about) 1 // Copyright 2014 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build ignore 6 7 // +godefs map struct_in_addr [4]byte /* in_addr */ 8 9 package ipv4 10 11 /* 12 #include <sys/socket.h> 13 14 #include <netinet/in.h> 15 */ 16 import "C" 17 18 const ( 19 sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage 20 sizeofSockaddrInet = C.sizeof_struct_sockaddr_in 21 sizeofInetPktinfo = C.sizeof_struct_in_pktinfo 22 23 sizeofIPMreq = C.sizeof_struct_ip_mreq 24 sizeofIPMreqSource = C.sizeof_struct_ip_mreq_source 25 sizeofGroupReq = C.sizeof_struct_group_req 26 sizeofGroupSourceReq = C.sizeof_struct_group_source_req 27 ) 28 29 type sockaddrStorage C.struct_sockaddr_storage 30 31 type sockaddrInet C.struct_sockaddr_in 32 33 type inetPktinfo C.struct_in_pktinfo 34 35 type ipMreq C.struct_ip_mreq 36 37 type ipMreqSource C.struct_ip_mreq_source 38 39 type groupReq C.struct_group_req 40 41 type groupSourceReq C.struct_group_source_req