golang.org/x/net@v0.25.1-0.20240516223405-c87a5b62e243/internal/socket/defs_aix.go (about) 1 // Copyright 2019 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 package socket 8 9 /* 10 #include <sys/socket.h> 11 12 #include <netinet/in.h> 13 */ 14 import "C" 15 16 type iovec C.struct_iovec 17 18 type msghdr C.struct_msghdr 19 20 type mmsghdr C.struct_mmsghdr 21 22 type cmsghdr C.struct_cmsghdr 23 24 const ( 25 sizeofIovec = C.sizeof_struct_iovec 26 sizeofMsghdr = C.sizeof_struct_msghdr 27 )