golang.org/x/net@v0.25.1-0.20240516223405-c87a5b62e243/ipv6/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_in6_addr [16]byte /* in6_addr */
     8  
     9  package ipv6
    10  
    11  /*
    12  #define __APPLE_USE_RFC_3542
    13  #include <netinet/in.h>
    14  #include <netinet/icmp6.h>
    15  */
    16  import "C"
    17  
    18  const (
    19  	sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
    20  	sizeofSockaddrInet6   = C.sizeof_struct_sockaddr_in6
    21  	sizeofInet6Pktinfo    = C.sizeof_struct_in6_pktinfo
    22  	sizeofIPv6Mtuinfo     = C.sizeof_struct_ip6_mtuinfo
    23  
    24  	sizeofIPv6Mreq       = C.sizeof_struct_ipv6_mreq
    25  	sizeofGroupReq       = C.sizeof_struct_group_req
    26  	sizeofGroupSourceReq = C.sizeof_struct_group_source_req
    27  
    28  	sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
    29  )
    30  
    31  type sockaddrStorage C.struct_sockaddr_storage
    32  
    33  type sockaddrInet6 C.struct_sockaddr_in6
    34  
    35  type inet6Pktinfo C.struct_in6_pktinfo
    36  
    37  type ipv6Mtuinfo C.struct_ip6_mtuinfo
    38  
    39  type ipv6Mreq C.struct_ipv6_mreq
    40  
    41  type icmpv6Filter C.struct_icmp6_filter
    42  
    43  type groupReq C.struct_group_req
    44  
    45  type groupSourceReq C.struct_group_source_req