gitee.com/ks-custle/core-gm@v0.0.0-20230922171213-b83bdd97b62c/net/ipv6/defs_solaris.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  // +build ignore
     7  
     8  // +godefs map struct_in6_addr [16]byte /* in6_addr */
     9  
    10  package ipv6
    11  
    12  /*
    13  #include <sys/socket.h>
    14  
    15  #include <netinet/in.h>
    16  #include <netinet/icmp6.h>
    17  */
    18  import "C"
    19  
    20  const (
    21  	sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
    22  	sizeofSockaddrInet6   = C.sizeof_struct_sockaddr_in6
    23  	sizeofInet6Pktinfo    = C.sizeof_struct_in6_pktinfo
    24  	sizeofIPv6Mtuinfo     = C.sizeof_struct_ip6_mtuinfo
    25  
    26  	sizeofIPv6Mreq       = C.sizeof_struct_ipv6_mreq
    27  	sizeofGroupReq       = C.sizeof_struct_group_req
    28  	sizeofGroupSourceReq = C.sizeof_struct_group_source_req
    29  
    30  	sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
    31  )
    32  
    33  type sockaddrStorage C.struct_sockaddr_storage
    34  
    35  type sockaddrInet6 C.struct_sockaddr_in6
    36  
    37  type inet6Pktinfo C.struct_in6_pktinfo
    38  
    39  type ipv6Mtuinfo C.struct_ip6_mtuinfo
    40  
    41  type ipv6Mreq C.struct_ipv6_mreq
    42  
    43  type groupReq C.struct_group_req
    44  
    45  type groupSourceReq C.struct_group_source_req
    46  
    47  type icmpv6Filter C.struct_icmp6_filter