github.com/code-reading/golang@v0.0.0-20220303082512-ba5bc0e589a3/go/src/syscall/types_dragonfly.go (about) 1 // Copyright 2009 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 /* 9 Input to cgo -godefs. See also mkerrors.sh and mkall.sh 10 */ 11 12 // +godefs map struct_in_addr [4]byte /* in_addr */ 13 // +godefs map struct_in6_addr [16]byte /* in6_addr */ 14 15 package syscall 16 17 /* 18 #define KERNEL 19 #include <dirent.h> 20 #include <fcntl.h> 21 #include <signal.h> 22 #include <termios.h> 23 #include <stdio.h> 24 #include <unistd.h> 25 #include <sys/event.h> 26 #include <sys/mman.h> 27 #include <sys/mount.h> 28 #include <sys/param.h> 29 #include <sys/ptrace.h> 30 #include <sys/resource.h> 31 #include <sys/select.h> 32 #include <sys/signal.h> 33 #include <sys/socket.h> 34 #include <sys/stat.h> 35 #include <sys/time.h> 36 #include <sys/types.h> 37 #include <sys/un.h> 38 #include <sys/wait.h> 39 #include <net/bpf.h> 40 #include <net/if.h> 41 #include <net/if_dl.h> 42 #include <net/route.h> 43 #include <netinet/in.h> 44 #include <netinet/icmp6.h> 45 #include <netinet/tcp.h> 46 47 enum { 48 sizeofPtr = sizeof(void*), 49 }; 50 51 union sockaddr_all { 52 struct sockaddr s1; // this one gets used for fields 53 struct sockaddr_in s2; // these pad it out 54 struct sockaddr_in6 s3; 55 struct sockaddr_un s4; 56 struct sockaddr_dl s5; 57 }; 58 59 struct sockaddr_any { 60 struct sockaddr addr; 61 char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)]; 62 }; 63 64 */ 65 import "C" 66 67 // Machine characteristics; for internal use. 68 69 const ( 70 sizeofPtr = C.sizeofPtr 71 sizeofShort = C.sizeof_short 72 sizeofInt = C.sizeof_int 73 sizeofLong = C.sizeof_long 74 sizeofLongLong = C.sizeof_longlong 75 ) 76 77 // Basic types 78 79 type ( 80 _C_short C.short 81 _C_int C.int 82 _C_long C.long 83 _C_long_long C.longlong 84 ) 85 86 // Time 87 88 type Timespec C.struct_timespec 89 90 type Timeval C.struct_timeval 91 92 // Processes 93 94 type Rusage C.struct_rusage 95 96 type Rlimit C.struct_rlimit 97 98 type _Gid_t C.gid_t 99 100 // Files 101 102 const ( // Directory mode bits 103 S_IFMT = C.S_IFMT 104 S_IFIFO = C.S_IFIFO 105 S_IFCHR = C.S_IFCHR 106 S_IFDIR = C.S_IFDIR 107 S_IFBLK = C.S_IFBLK 108 S_IFREG = C.S_IFREG 109 S_IFLNK = C.S_IFLNK 110 S_IFSOCK = C.S_IFSOCK 111 S_ISUID = C.S_ISUID 112 S_ISGID = C.S_ISGID 113 S_ISVTX = C.S_ISVTX 114 S_IRUSR = C.S_IRUSR 115 S_IWUSR = C.S_IWUSR 116 S_IXUSR = C.S_IXUSR 117 S_IRWXG = C.S_IRWXG 118 S_IRWXO = C.S_IRWXO 119 ) 120 121 type Stat_t C.struct_stat 122 123 type Statfs_t C.struct_statfs 124 125 type Flock_t C.struct_flock 126 127 type Dirent C.struct_dirent 128 129 type Fsid C.struct_fsid 130 131 // File system limits 132 133 const ( 134 pathMax = C.PATH_MAX 135 ) 136 137 // Sockets 138 139 type RawSockaddrInet4 C.struct_sockaddr_in 140 141 type RawSockaddrInet6 C.struct_sockaddr_in6 142 143 type RawSockaddrUnix C.struct_sockaddr_un 144 145 type RawSockaddrDatalink C.struct_sockaddr_dl 146 147 type RawSockaddr C.struct_sockaddr 148 149 type RawSockaddrAny C.struct_sockaddr_any 150 151 type _Socklen C.socklen_t 152 153 type Linger C.struct_linger 154 155 type Iovec C.struct_iovec 156 157 type IPMreq C.struct_ip_mreq 158 159 type IPv6Mreq C.struct_ipv6_mreq 160 161 type Msghdr C.struct_msghdr 162 163 type Cmsghdr C.struct_cmsghdr 164 165 type Inet6Pktinfo C.struct_in6_pktinfo 166 167 type IPv6MTUInfo C.struct_ip6_mtuinfo 168 169 type ICMPv6Filter C.struct_icmp6_filter 170 171 const ( 172 SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in 173 SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 174 SizeofSockaddrAny = C.sizeof_struct_sockaddr_any 175 SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un 176 SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl 177 SizeofLinger = C.sizeof_struct_linger 178 SizeofIPMreq = C.sizeof_struct_ip_mreq 179 SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq 180 SizeofMsghdr = C.sizeof_struct_msghdr 181 SizeofCmsghdr = C.sizeof_struct_cmsghdr 182 SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo 183 SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo 184 SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter 185 ) 186 187 // Ptrace requests 188 189 const ( 190 PTRACE_TRACEME = C.PT_TRACE_ME 191 PTRACE_CONT = C.PT_CONTINUE 192 PTRACE_KILL = C.PT_KILL 193 ) 194 195 // Events (kqueue, kevent) 196 197 type Kevent_t C.struct_kevent 198 199 // Select 200 201 type FdSet C.fd_set 202 203 // Routing and interface messages 204 205 const ( 206 SizeofIfMsghdr = C.sizeof_struct_if_msghdr 207 SizeofIfData = C.sizeof_struct_if_data 208 SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr 209 SizeofIfmaMsghdr = C.sizeof_struct_ifma_msghdr 210 SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr 211 SizeofRtMsghdr = C.sizeof_struct_rt_msghdr 212 SizeofRtMetrics = C.sizeof_struct_rt_metrics 213 ) 214 215 type IfMsghdr C.struct_if_msghdr 216 217 type IfData C.struct_if_data 218 219 type IfaMsghdr C.struct_ifa_msghdr 220 221 type IfmaMsghdr C.struct_ifma_msghdr 222 223 type IfAnnounceMsghdr C.struct_if_announcemsghdr 224 225 type RtMsghdr C.struct_rt_msghdr 226 227 type RtMetrics C.struct_rt_metrics 228 229 // Berkeley packet filter 230 231 const ( 232 SizeofBpfVersion = C.sizeof_struct_bpf_version 233 SizeofBpfStat = C.sizeof_struct_bpf_stat 234 SizeofBpfProgram = C.sizeof_struct_bpf_program 235 SizeofBpfInsn = C.sizeof_struct_bpf_insn 236 SizeofBpfHdr = C.sizeof_struct_bpf_hdr 237 ) 238 239 type BpfVersion C.struct_bpf_version 240 241 type BpfStat C.struct_bpf_stat 242 243 type BpfProgram C.struct_bpf_program 244 245 type BpfInsn C.struct_bpf_insn 246 247 type BpfHdr C.struct_bpf_hdr 248 249 // Misc 250 251 const ( 252 _AT_FDCWD = C.AT_FDCWD 253 ) 254 255 // Terminal handling 256 257 type Termios C.struct_termios