mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
vendor: update golang.org/x/sys
This commit is contained in:
parent
22e3fabefd
commit
7343e8b408
40 changed files with 1887 additions and 338 deletions
2
go.mod
2
go.mod
|
@ -12,7 +12,7 @@ require (
|
||||||
github.com/valyala/gozstd v1.6.1
|
github.com/valyala/gozstd v1.6.1
|
||||||
github.com/valyala/histogram v1.0.1
|
github.com/valyala/histogram v1.0.1
|
||||||
github.com/valyala/quicktemplate v1.2.0
|
github.com/valyala/quicktemplate v1.2.0
|
||||||
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a
|
golang.org/x/sys v0.0.0-20190904154756-749cb33beabd
|
||||||
)
|
)
|
||||||
|
|
||||||
go 1.12
|
go 1.12
|
||||||
|
|
4
go.sum
4
go.sum
|
@ -49,5 +49,5 @@ github.com/valyala/quicktemplate v1.2.0 h1:BaO1nHTkspYzmAjPXj0QiDJxai96tlcZyKcI9
|
||||||
github.com/valyala/quicktemplate v1.2.0/go.mod h1:EH+4AkTd43SvgIbQHYu59/cJyxDoOVRUAfrukLPuGJ4=
|
github.com/valyala/quicktemplate v1.2.0/go.mod h1:EH+4AkTd43SvgIbQHYu59/cJyxDoOVRUAfrukLPuGJ4=
|
||||||
github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio=
|
github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio=
|
||||||
golang.org/x/net v0.0.0-20180911220305-26e67e76b6c3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20180911220305-26e67e76b6c3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a h1:aYOabOQFp6Vj6W1F80affTUvO9UxmJRx8K0gsfABByQ=
|
golang.org/x/sys v0.0.0-20190904154756-749cb33beabd h1:DBH9mDw0zluJT/R+nGuV3jWFWLFaHyYZWD4tOT+cjn0=
|
||||||
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
|
46
vendor/golang.org/x/sys/unix/affinity_linux.go
generated
vendored
46
vendor/golang.org/x/sys/unix/affinity_linux.go
generated
vendored
|
@ -7,6 +7,7 @@
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"math/bits"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -79,50 +80,7 @@ func (s *CPUSet) IsSet(cpu int) bool {
|
||||||
func (s *CPUSet) Count() int {
|
func (s *CPUSet) Count() int {
|
||||||
c := 0
|
c := 0
|
||||||
for _, b := range s {
|
for _, b := range s {
|
||||||
c += onesCount64(uint64(b))
|
c += bits.OnesCount64(uint64(b))
|
||||||
}
|
}
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// onesCount64 is a copy of Go 1.9's math/bits.OnesCount64.
|
|
||||||
// Once this package can require Go 1.9, we can delete this
|
|
||||||
// and update the caller to use bits.OnesCount64.
|
|
||||||
func onesCount64(x uint64) int {
|
|
||||||
const m0 = 0x5555555555555555 // 01010101 ...
|
|
||||||
const m1 = 0x3333333333333333 // 00110011 ...
|
|
||||||
const m2 = 0x0f0f0f0f0f0f0f0f // 00001111 ...
|
|
||||||
|
|
||||||
// Unused in this function, but definitions preserved for
|
|
||||||
// documentation purposes:
|
|
||||||
//
|
|
||||||
// const m3 = 0x00ff00ff00ff00ff // etc.
|
|
||||||
// const m4 = 0x0000ffff0000ffff
|
|
||||||
//
|
|
||||||
// Implementation: Parallel summing of adjacent bits.
|
|
||||||
// See "Hacker's Delight", Chap. 5: Counting Bits.
|
|
||||||
// The following pattern shows the general approach:
|
|
||||||
//
|
|
||||||
// x = x>>1&(m0&m) + x&(m0&m)
|
|
||||||
// x = x>>2&(m1&m) + x&(m1&m)
|
|
||||||
// x = x>>4&(m2&m) + x&(m2&m)
|
|
||||||
// x = x>>8&(m3&m) + x&(m3&m)
|
|
||||||
// x = x>>16&(m4&m) + x&(m4&m)
|
|
||||||
// x = x>>32&(m5&m) + x&(m5&m)
|
|
||||||
// return int(x)
|
|
||||||
//
|
|
||||||
// Masking (& operations) can be left away when there's no
|
|
||||||
// danger that a field's sum will carry over into the next
|
|
||||||
// field: Since the result cannot be > 64, 8 bits is enough
|
|
||||||
// and we can ignore the masks for the shifts by 8 and up.
|
|
||||||
// Per "Hacker's Delight", the first line can be simplified
|
|
||||||
// more, but it saves at best one instruction, so we leave
|
|
||||||
// it alone for clarity.
|
|
||||||
const m = 1<<64 - 1
|
|
||||||
x = x>>1&(m0&m) + x&(m0&m)
|
|
||||||
x = x>>2&(m1&m) + x&(m1&m)
|
|
||||||
x = (x>>4 + x) & (m2 & m)
|
|
||||||
x += x >> 8
|
|
||||||
x += x >> 16
|
|
||||||
x += x >> 32
|
|
||||||
return int(x) & (1<<7 - 1)
|
|
||||||
}
|
|
||||||
|
|
41
vendor/golang.org/x/sys/unix/ioctl.go
generated
vendored
41
vendor/golang.org/x/sys/unix/ioctl.go
generated
vendored
|
@ -6,7 +6,19 @@
|
||||||
|
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
import "runtime"
|
import (
|
||||||
|
"runtime"
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ioctl itself should not be exposed directly, but additional get/set
|
||||||
|
// functions for specific types are permissible.
|
||||||
|
|
||||||
|
// IoctlSetInt performs an ioctl operation which sets an integer value
|
||||||
|
// on fd, using the specified request number.
|
||||||
|
func IoctlSetInt(fd int, req uint, value int) error {
|
||||||
|
return ioctl(fd, req, uintptr(value))
|
||||||
|
}
|
||||||
|
|
||||||
// IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
|
// IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
|
||||||
//
|
//
|
||||||
|
@ -14,7 +26,7 @@ import "runtime"
|
||||||
func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
|
func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
|
||||||
// TODO: if we get the chance, remove the req parameter and
|
// TODO: if we get the chance, remove the req parameter and
|
||||||
// hardcode TIOCSWINSZ.
|
// hardcode TIOCSWINSZ.
|
||||||
err := ioctlSetWinsize(fd, req, value)
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
||||||
runtime.KeepAlive(value)
|
runtime.KeepAlive(value)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -24,7 +36,30 @@ func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
|
||||||
// The req value will usually be TCSETA or TIOCSETA.
|
// The req value will usually be TCSETA or TIOCSETA.
|
||||||
func IoctlSetTermios(fd int, req uint, value *Termios) error {
|
func IoctlSetTermios(fd int, req uint, value *Termios) error {
|
||||||
// TODO: if we get the chance, remove the req parameter.
|
// TODO: if we get the chance, remove the req parameter.
|
||||||
err := ioctlSetTermios(fd, req, value)
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
||||||
runtime.KeepAlive(value)
|
runtime.KeepAlive(value)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IoctlGetInt performs an ioctl operation which gets an integer value
|
||||||
|
// from fd, using the specified request number.
|
||||||
|
//
|
||||||
|
// A few ioctl requests use the return value as an output parameter;
|
||||||
|
// for those, IoctlRetInt should be used instead of this function.
|
||||||
|
func IoctlGetInt(fd int, req uint) (int, error) {
|
||||||
|
var value int
|
||||||
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
||||||
|
return value, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
||||||
|
var value Winsize
|
||||||
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
||||||
|
return &value, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
||||||
|
var value Termios
|
||||||
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
||||||
|
return &value, err
|
||||||
|
}
|
||||||
|
|
4
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
4
vendor/golang.org/x/sys/unix/mkerrors.sh
generated
vendored
|
@ -206,6 +206,7 @@ struct ltchars {
|
||||||
#include <linux/netfilter/nfnetlink.h>
|
#include <linux/netfilter/nfnetlink.h>
|
||||||
#include <linux/netlink.h>
|
#include <linux/netlink.h>
|
||||||
#include <linux/net_namespace.h>
|
#include <linux/net_namespace.h>
|
||||||
|
#include <linux/nsfs.h>
|
||||||
#include <linux/perf_event.h>
|
#include <linux/perf_event.h>
|
||||||
#include <linux/random.h>
|
#include <linux/random.h>
|
||||||
#include <linux/reboot.h>
|
#include <linux/reboot.h>
|
||||||
|
@ -226,6 +227,7 @@ struct ltchars {
|
||||||
#include <linux/rtc.h>
|
#include <linux/rtc.h>
|
||||||
#include <linux/if_xdp.h>
|
#include <linux/if_xdp.h>
|
||||||
#include <linux/cryptouser.h>
|
#include <linux/cryptouser.h>
|
||||||
|
#include <linux/tipc.h>
|
||||||
#include <mtd/ubi-user.h>
|
#include <mtd/ubi-user.h>
|
||||||
#include <net/route.h>
|
#include <net/route.h>
|
||||||
|
|
||||||
|
@ -451,6 +453,7 @@ ccflags="$@"
|
||||||
$2 ~ /^SYSCTL_VERS/ ||
|
$2 ~ /^SYSCTL_VERS/ ||
|
||||||
$2 !~ "MNT_BITS" &&
|
$2 !~ "MNT_BITS" &&
|
||||||
$2 ~ /^(MS|MNT|UMOUNT)_/ ||
|
$2 ~ /^(MS|MNT|UMOUNT)_/ ||
|
||||||
|
$2 ~ /^NS_GET_/ ||
|
||||||
$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
|
$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
|
||||||
$2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT)_/ ||
|
$2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT)_/ ||
|
||||||
$2 ~ /^KEXEC_/ ||
|
$2 ~ /^KEXEC_/ ||
|
||||||
|
@ -506,6 +509,7 @@ ccflags="$@"
|
||||||
$2 ~ /^XDP_/ ||
|
$2 ~ /^XDP_/ ||
|
||||||
$2 ~ /^(HDIO|WIN|SMART)_/ ||
|
$2 ~ /^(HDIO|WIN|SMART)_/ ||
|
||||||
$2 ~ /^CRYPTO_/ ||
|
$2 ~ /^CRYPTO_/ ||
|
||||||
|
$2 ~ /^TIPC_/ ||
|
||||||
$2 !~ "WMESGLEN" &&
|
$2 !~ "WMESGLEN" &&
|
||||||
$2 ~ /^W[A-Z0-9]+$/ ||
|
$2 ~ /^W[A-Z0-9]+$/ ||
|
||||||
$2 ~/^PPPIOC/ ||
|
$2 ~/^PPPIOC/ ||
|
||||||
|
|
39
vendor/golang.org/x/sys/unix/syscall_aix.go
generated
vendored
39
vendor/golang.org/x/sys/unix/syscall_aix.go
generated
vendored
|
@ -350,49 +350,12 @@ func (w WaitStatus) Signal() Signal {
|
||||||
|
|
||||||
func (w WaitStatus) Continued() bool { return w&0x01000000 != 0 }
|
func (w WaitStatus) Continued() bool { return w&0x01000000 != 0 }
|
||||||
|
|
||||||
func (w WaitStatus) CoreDump() bool { return w&0x200 != 0 }
|
func (w WaitStatus) CoreDump() bool { return w&0x80 == 0x80 }
|
||||||
|
|
||||||
func (w WaitStatus) TrapCause() int { return -1 }
|
func (w WaitStatus) TrapCause() int { return -1 }
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
||||||
|
|
||||||
// ioctl itself should not be exposed directly, but additional get/set
|
|
||||||
// functions for specific types are permissible.
|
|
||||||
|
|
||||||
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
||||||
// on fd, using the specified request number.
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) error {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
||||||
// from fd, using the specified request number.
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX
|
// fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX
|
||||||
// There is no way to create a custom fcntl and to keep //sys fcntl easily,
|
// There is no way to create a custom fcntl and to keep //sys fcntl easily,
|
||||||
// Therefore, the programmer must call dup2 instead of fcntl in this case.
|
// Therefore, the programmer must call dup2 instead of fcntl in this case.
|
||||||
|
|
37
vendor/golang.org/x/sys/unix/syscall_darwin.go
generated
vendored
37
vendor/golang.org/x/sys/unix/syscall_darwin.go
generated
vendored
|
@ -339,43 +339,6 @@ func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid, int(sig
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
||||||
|
|
||||||
// ioctl itself should not be exposed directly, but additional get/set
|
|
||||||
// functions for specific types are permissible.
|
|
||||||
|
|
||||||
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
||||||
// on fd, using the specified request number.
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) error {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
||||||
// from fd, using the specified request number.
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func Uname(uname *Utsname) error {
|
func Uname(uname *Utsname) error {
|
||||||
mib := []_C_int{CTL_KERN, KERN_OSTYPE}
|
mib := []_C_int{CTL_KERN, KERN_OSTYPE}
|
||||||
n := unsafe.Sizeof(uname.Sysname)
|
n := unsafe.Sizeof(uname.Sysname)
|
||||||
|
|
37
vendor/golang.org/x/sys/unix/syscall_dragonfly.go
generated
vendored
37
vendor/golang.org/x/sys/unix/syscall_dragonfly.go
generated
vendored
|
@ -150,43 +150,6 @@ func setattrlistTimes(path string, times []Timespec, flags int) error {
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
||||||
|
|
||||||
// ioctl itself should not be exposed directly, but additional get/set
|
|
||||||
// functions for specific types are permissible.
|
|
||||||
|
|
||||||
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
||||||
// on fd, using the specified request number.
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) error {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
||||||
// from fd, using the specified request number.
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func sysctlUname(mib []_C_int, old *byte, oldlen *uintptr) error {
|
func sysctlUname(mib []_C_int, old *byte, oldlen *uintptr) error {
|
||||||
err := sysctl(mib, old, oldlen, nil, 0)
|
err := sysctl(mib, old, oldlen, nil, 0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
37
vendor/golang.org/x/sys/unix/syscall_freebsd.go
generated
vendored
37
vendor/golang.org/x/sys/unix/syscall_freebsd.go
generated
vendored
|
@ -201,43 +201,6 @@ func setattrlistTimes(path string, times []Timespec, flags int) error {
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
||||||
|
|
||||||
// ioctl itself should not be exposed directly, but additional get/set
|
|
||||||
// functions for specific types are permissible.
|
|
||||||
|
|
||||||
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
||||||
// on fd, using the specified request number.
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) error {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
||||||
// from fd, using the specified request number.
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func Uname(uname *Utsname) error {
|
func Uname(uname *Utsname) error {
|
||||||
mib := []_C_int{CTL_KERN, KERN_OSTYPE}
|
mib := []_C_int{CTL_KERN, KERN_OSTYPE}
|
||||||
n := unsafe.Sizeof(uname.Sysname)
|
n := unsafe.Sizeof(uname.Sysname)
|
||||||
|
|
130
vendor/golang.org/x/sys/unix/syscall_linux.go
generated
vendored
130
vendor/golang.org/x/sys/unix/syscall_linux.go
generated
vendored
|
@ -71,6 +71,17 @@ func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) {
|
||||||
// ioctl itself should not be exposed directly, but additional get/set
|
// ioctl itself should not be exposed directly, but additional get/set
|
||||||
// functions for specific types are permissible.
|
// functions for specific types are permissible.
|
||||||
|
|
||||||
|
// IoctlRetInt performs an ioctl operation specified by req on a device
|
||||||
|
// associated with opened file descriptor fd, and returns a non-negative
|
||||||
|
// integer that is returned by the ioctl syscall.
|
||||||
|
func IoctlRetInt(fd int, req uint) (int, error) {
|
||||||
|
ret, _, err := Syscall(SYS_IOCTL, uintptr(fd), uintptr(req), 0)
|
||||||
|
if err != 0 {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
return int(ret), nil
|
||||||
|
}
|
||||||
|
|
||||||
// IoctlSetPointerInt performs an ioctl operation which sets an
|
// IoctlSetPointerInt performs an ioctl operation which sets an
|
||||||
// integer value on fd, using the specified request number. The ioctl
|
// integer value on fd, using the specified request number. The ioctl
|
||||||
// argument is called with a pointer to the integer value, rather than
|
// argument is called with a pointer to the integer value, rather than
|
||||||
|
@ -80,52 +91,18 @@ func IoctlSetPointerInt(fd int, req uint, value int) error {
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(&v)))
|
return ioctl(fd, req, uintptr(unsafe.Pointer(&v)))
|
||||||
}
|
}
|
||||||
|
|
||||||
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
||||||
// on fd, using the specified request number.
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) error {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlSetRTCTime(fd int, value *RTCTime) error {
|
func IoctlSetRTCTime(fd int, value *RTCTime) error {
|
||||||
err := ioctl(fd, RTC_SET_TIME, uintptr(unsafe.Pointer(value)))
|
err := ioctl(fd, RTC_SET_TIME, uintptr(unsafe.Pointer(value)))
|
||||||
runtime.KeepAlive(value)
|
runtime.KeepAlive(value)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
||||||
// from fd, using the specified request number.
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetUint32(fd int, req uint) (uint32, error) {
|
func IoctlGetUint32(fd int, req uint) (uint32, error) {
|
||||||
var value uint32
|
var value uint32
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
||||||
return value, err
|
return value, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetRTCTime(fd int) (*RTCTime, error) {
|
func IoctlGetRTCTime(fd int) (*RTCTime, error) {
|
||||||
var value RTCTime
|
var value RTCTime
|
||||||
err := ioctl(fd, RTC_RD_TIME, uintptr(unsafe.Pointer(&value)))
|
err := ioctl(fd, RTC_RD_TIME, uintptr(unsafe.Pointer(&value)))
|
||||||
|
@ -798,6 +775,70 @@ func (sa *SockaddrPPPoE) sockaddr() (unsafe.Pointer, _Socklen, error) {
|
||||||
return unsafe.Pointer(&sa.raw), SizeofSockaddrPPPoX, nil
|
return unsafe.Pointer(&sa.raw), SizeofSockaddrPPPoX, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SockaddrTIPC implements the Sockaddr interface for AF_TIPC type sockets.
|
||||||
|
// For more information on TIPC, see: http://tipc.sourceforge.net/.
|
||||||
|
type SockaddrTIPC struct {
|
||||||
|
// Scope is the publication scopes when binding service/service range.
|
||||||
|
// Should be set to TIPC_CLUSTER_SCOPE or TIPC_NODE_SCOPE.
|
||||||
|
Scope int
|
||||||
|
|
||||||
|
// Addr is the type of address used to manipulate a socket. Addr must be
|
||||||
|
// one of:
|
||||||
|
// - *TIPCSocketAddr: "id" variant in the C addr union
|
||||||
|
// - *TIPCServiceRange: "nameseq" variant in the C addr union
|
||||||
|
// - *TIPCServiceName: "name" variant in the C addr union
|
||||||
|
//
|
||||||
|
// If nil, EINVAL will be returned when the structure is used.
|
||||||
|
Addr TIPCAddr
|
||||||
|
|
||||||
|
raw RawSockaddrTIPC
|
||||||
|
}
|
||||||
|
|
||||||
|
// TIPCAddr is implemented by types that can be used as an address for
|
||||||
|
// SockaddrTIPC. It is only implemented by *TIPCSocketAddr, *TIPCServiceRange,
|
||||||
|
// and *TIPCServiceName.
|
||||||
|
type TIPCAddr interface {
|
||||||
|
tipcAddrtype() uint8
|
||||||
|
tipcAddr() [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sa *TIPCSocketAddr) tipcAddr() [12]byte {
|
||||||
|
var out [12]byte
|
||||||
|
copy(out[:], (*(*[unsafe.Sizeof(TIPCSocketAddr{})]byte)(unsafe.Pointer(sa)))[:])
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sa *TIPCSocketAddr) tipcAddrtype() uint8 { return TIPC_SOCKET_ADDR }
|
||||||
|
|
||||||
|
func (sa *TIPCServiceRange) tipcAddr() [12]byte {
|
||||||
|
var out [12]byte
|
||||||
|
copy(out[:], (*(*[unsafe.Sizeof(TIPCServiceRange{})]byte)(unsafe.Pointer(sa)))[:])
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sa *TIPCServiceRange) tipcAddrtype() uint8 { return TIPC_SERVICE_RANGE }
|
||||||
|
|
||||||
|
func (sa *TIPCServiceName) tipcAddr() [12]byte {
|
||||||
|
var out [12]byte
|
||||||
|
copy(out[:], (*(*[unsafe.Sizeof(TIPCServiceName{})]byte)(unsafe.Pointer(sa)))[:])
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sa *TIPCServiceName) tipcAddrtype() uint8 { return TIPC_SERVICE_ADDR }
|
||||||
|
|
||||||
|
func (sa *SockaddrTIPC) sockaddr() (unsafe.Pointer, _Socklen, error) {
|
||||||
|
if sa.Addr == nil {
|
||||||
|
return nil, 0, EINVAL
|
||||||
|
}
|
||||||
|
|
||||||
|
sa.raw.Family = AF_TIPC
|
||||||
|
sa.raw.Scope = int8(sa.Scope)
|
||||||
|
sa.raw.Addrtype = sa.Addr.tipcAddrtype()
|
||||||
|
sa.raw.Addr = sa.Addr.tipcAddr()
|
||||||
|
|
||||||
|
return unsafe.Pointer(&sa.raw), SizeofSockaddrTIPC, nil
|
||||||
|
}
|
||||||
|
|
||||||
func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
|
func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
|
||||||
switch rsa.Addr.Family {
|
switch rsa.Addr.Family {
|
||||||
case AF_NETLINK:
|
case AF_NETLINK:
|
||||||
|
@ -923,6 +964,27 @@ func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return sa, nil
|
||||||
|
case AF_TIPC:
|
||||||
|
pp := (*RawSockaddrTIPC)(unsafe.Pointer(rsa))
|
||||||
|
|
||||||
|
sa := &SockaddrTIPC{
|
||||||
|
Scope: int(pp.Scope),
|
||||||
|
}
|
||||||
|
|
||||||
|
// Determine which union variant is present in pp.Addr by checking
|
||||||
|
// pp.Addrtype.
|
||||||
|
switch pp.Addrtype {
|
||||||
|
case TIPC_SERVICE_RANGE:
|
||||||
|
sa.Addr = (*TIPCServiceRange)(unsafe.Pointer(&pp.Addr))
|
||||||
|
case TIPC_SERVICE_ADDR:
|
||||||
|
sa.Addr = (*TIPCServiceName)(unsafe.Pointer(&pp.Addr))
|
||||||
|
case TIPC_SOCKET_ADDR:
|
||||||
|
sa.Addr = (*TIPCSocketAddr)(unsafe.Pointer(&pp.Addr))
|
||||||
|
default:
|
||||||
|
return nil, EINVAL
|
||||||
|
}
|
||||||
|
|
||||||
return sa, nil
|
return sa, nil
|
||||||
}
|
}
|
||||||
return nil, EAFNOSUPPORT
|
return nil, EAFNOSUPPORT
|
||||||
|
|
37
vendor/golang.org/x/sys/unix/syscall_netbsd.go
generated
vendored
37
vendor/golang.org/x/sys/unix/syscall_netbsd.go
generated
vendored
|
@ -187,43 +187,6 @@ func setattrlistTimes(path string, times []Timespec, flags int) error {
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
||||||
|
|
||||||
// ioctl itself should not be exposed directly, but additional get/set
|
|
||||||
// functions for specific types are permissible.
|
|
||||||
|
|
||||||
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
||||||
// on fd, using the specified request number.
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) error {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
||||||
// from fd, using the specified request number.
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetPtmget(fd int, req uint) (*Ptmget, error) {
|
func IoctlGetPtmget(fd int, req uint) (*Ptmget, error) {
|
||||||
var value Ptmget
|
var value Ptmget
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
||||||
|
|
37
vendor/golang.org/x/sys/unix/syscall_openbsd.go
generated
vendored
37
vendor/golang.org/x/sys/unix/syscall_openbsd.go
generated
vendored
|
@ -178,43 +178,6 @@ func setattrlistTimes(path string, times []Timespec, flags int) error {
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
||||||
|
|
||||||
// ioctl itself should not be exposed directly, but additional get/set
|
|
||||||
// functions for specific types are permissible.
|
|
||||||
|
|
||||||
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
||||||
// on fd, using the specified request number.
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) error {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) error {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
||||||
// from fd, using the specified request number.
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
//sys ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error)
|
//sys ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) (n int, err error)
|
||||||
|
|
||||||
func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {
|
func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, err error) {
|
||||||
|
|
30
vendor/golang.org/x/sys/unix/syscall_solaris.go
generated
vendored
30
vendor/golang.org/x/sys/unix/syscall_solaris.go
generated
vendored
|
@ -553,40 +553,10 @@ func Minor(dev uint64) uint32 {
|
||||||
|
|
||||||
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
//sys ioctl(fd int, req uint, arg uintptr) (err error)
|
||||||
|
|
||||||
func IoctlSetInt(fd int, req uint, value int) (err error) {
|
|
||||||
return ioctl(fd, req, uintptr(value))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetWinsize(fd int, req uint, value *Winsize) (err error) {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func ioctlSetTermios(fd int, req uint, value *Termios) (err error) {
|
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlSetTermio(fd int, req uint, value *Termio) (err error) {
|
func IoctlSetTermio(fd int, req uint, value *Termio) (err error) {
|
||||||
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
||||||
}
|
}
|
||||||
|
|
||||||
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
||||||
var value int
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
||||||
var value Winsize
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
||||||
var value Termios
|
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
||||||
return &value, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func IoctlGetTermio(fd int, req uint) (*Termio, error) {
|
func IoctlGetTermio(fd int, req uint) (*Termio, error) {
|
||||||
var value Termio
|
var value Termio
|
||||||
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_386.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_386.go
generated
vendored
|
@ -1408,6 +1408,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0xb703
|
||||||
|
NS_GET_OWNER_UID = 0xb704
|
||||||
|
NS_GET_PARENT = 0xb702
|
||||||
|
NS_GET_USERNS = 0xb701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1996,6 +2000,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2434,6 +2440,71 @@ const (
|
||||||
TIOCSTI = 0x5412
|
TIOCSTI = 0x5412
|
||||||
TIOCSWINSZ = 0x5414
|
TIOCSWINSZ = 0x5414
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x100
|
TOSTOP = 0x100
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
generated
vendored
|
@ -1408,6 +1408,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0xb703
|
||||||
|
NS_GET_OWNER_UID = 0xb704
|
||||||
|
NS_GET_PARENT = 0xb702
|
||||||
|
NS_GET_USERNS = 0xb701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1997,6 +2001,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2435,6 +2441,71 @@ const (
|
||||||
TIOCSTI = 0x5412
|
TIOCSTI = 0x5412
|
||||||
TIOCSWINSZ = 0x5414
|
TIOCSWINSZ = 0x5414
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x100
|
TOSTOP = 0x100
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
generated
vendored
|
@ -1406,6 +1406,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0xb703
|
||||||
|
NS_GET_OWNER_UID = 0xb704
|
||||||
|
NS_GET_PARENT = 0xb702
|
||||||
|
NS_GET_USERNS = 0xb701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -2003,6 +2007,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2441,6 +2447,71 @@ const (
|
||||||
TIOCSTI = 0x5412
|
TIOCSTI = 0x5412
|
||||||
TIOCSWINSZ = 0x5414
|
TIOCSWINSZ = 0x5414
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x100
|
TOSTOP = 0x100
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
generated
vendored
|
@ -1409,6 +1409,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0xb703
|
||||||
|
NS_GET_OWNER_UID = 0xb704
|
||||||
|
NS_GET_PARENT = 0xb702
|
||||||
|
NS_GET_USERNS = 0xb701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1987,6 +1991,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2426,6 +2432,71 @@ const (
|
||||||
TIOCSTI = 0x5412
|
TIOCSTI = 0x5412
|
||||||
TIOCSWINSZ = 0x5414
|
TIOCSWINSZ = 0x5414
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x100
|
TOSTOP = 0x100
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
generated
vendored
|
@ -1406,6 +1406,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0x2000b703
|
||||||
|
NS_GET_OWNER_UID = 0x2000b704
|
||||||
|
NS_GET_PARENT = 0x2000b702
|
||||||
|
NS_GET_USERNS = 0x2000b701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1996,6 +2000,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2436,6 +2442,71 @@ const (
|
||||||
TIOCSTI = 0x5472
|
TIOCSTI = 0x5472
|
||||||
TIOCSWINSZ = 0x80087467
|
TIOCSWINSZ = 0x80087467
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x8000
|
TOSTOP = 0x8000
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
generated
vendored
|
@ -1406,6 +1406,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0x2000b703
|
||||||
|
NS_GET_OWNER_UID = 0x2000b704
|
||||||
|
NS_GET_PARENT = 0x2000b702
|
||||||
|
NS_GET_USERNS = 0x2000b701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1996,6 +2000,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2436,6 +2442,71 @@ const (
|
||||||
TIOCSTI = 0x5472
|
TIOCSTI = 0x5472
|
||||||
TIOCSWINSZ = 0x80087467
|
TIOCSWINSZ = 0x80087467
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x8000
|
TOSTOP = 0x8000
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
generated
vendored
|
@ -1406,6 +1406,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0x2000b703
|
||||||
|
NS_GET_OWNER_UID = 0x2000b704
|
||||||
|
NS_GET_PARENT = 0x2000b702
|
||||||
|
NS_GET_USERNS = 0x2000b701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1996,6 +2000,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2436,6 +2442,71 @@ const (
|
||||||
TIOCSTI = 0x5472
|
TIOCSTI = 0x5472
|
||||||
TIOCSWINSZ = 0x80087467
|
TIOCSWINSZ = 0x80087467
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x8000
|
TOSTOP = 0x8000
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
generated
vendored
|
@ -1406,6 +1406,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0x2000b703
|
||||||
|
NS_GET_OWNER_UID = 0x2000b704
|
||||||
|
NS_GET_PARENT = 0x2000b702
|
||||||
|
NS_GET_USERNS = 0x2000b701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1996,6 +2000,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2436,6 +2442,71 @@ const (
|
||||||
TIOCSTI = 0x5472
|
TIOCSTI = 0x5472
|
||||||
TIOCSWINSZ = 0x80087467
|
TIOCSWINSZ = 0x80087467
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x8000
|
TOSTOP = 0x8000
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
generated
vendored
|
@ -1407,6 +1407,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80000000
|
NOFLSH = 0x80000000
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0x2000b703
|
||||||
|
NS_GET_OWNER_UID = 0x2000b704
|
||||||
|
NS_GET_PARENT = 0x2000b702
|
||||||
|
NS_GET_USERNS = 0x2000b701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -2054,6 +2058,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2496,6 +2502,71 @@ const (
|
||||||
TIOCSTOP = 0x2000746f
|
TIOCSTOP = 0x2000746f
|
||||||
TIOCSWINSZ = 0x80087467
|
TIOCSWINSZ = 0x80087467
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x400000
|
TOSTOP = 0x400000
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
generated
vendored
|
@ -1407,6 +1407,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80000000
|
NOFLSH = 0x80000000
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0x2000b703
|
||||||
|
NS_GET_OWNER_UID = 0x2000b704
|
||||||
|
NS_GET_PARENT = 0x2000b702
|
||||||
|
NS_GET_USERNS = 0x2000b701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -2054,6 +2058,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2496,6 +2502,71 @@ const (
|
||||||
TIOCSTOP = 0x2000746f
|
TIOCSTOP = 0x2000746f
|
||||||
TIOCSWINSZ = 0x80087467
|
TIOCSWINSZ = 0x80087467
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x400000
|
TOSTOP = 0x400000
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
generated
vendored
|
@ -1406,6 +1406,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0xb703
|
||||||
|
NS_GET_OWNER_UID = 0xb704
|
||||||
|
NS_GET_PARENT = 0xb702
|
||||||
|
NS_GET_USERNS = 0xb701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -1984,6 +1988,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2422,6 +2428,71 @@ const (
|
||||||
TIOCSTI = 0x5412
|
TIOCSTI = 0x5412
|
||||||
TIOCSWINSZ = 0x5414
|
TIOCSWINSZ = 0x5414
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x100
|
TOSTOP = 0x100
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
generated
vendored
|
@ -1406,6 +1406,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0xb703
|
||||||
|
NS_GET_OWNER_UID = 0xb704
|
||||||
|
NS_GET_PARENT = 0xb702
|
||||||
|
NS_GET_USERNS = 0xb701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -2057,6 +2061,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2495,6 +2501,71 @@ const (
|
||||||
TIOCSTI = 0x5412
|
TIOCSTI = 0x5412
|
||||||
TIOCSWINSZ = 0x5414
|
TIOCSWINSZ = 0x5414
|
||||||
TIOCVHANGUP = 0x5437
|
TIOCVHANGUP = 0x5437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x100
|
TOSTOP = 0x100
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
71
vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
generated
vendored
71
vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
generated
vendored
|
@ -1410,6 +1410,10 @@ const (
|
||||||
NLM_F_ROOT = 0x100
|
NLM_F_ROOT = 0x100
|
||||||
NOFLSH = 0x80
|
NOFLSH = 0x80
|
||||||
NSFS_MAGIC = 0x6e736673
|
NSFS_MAGIC = 0x6e736673
|
||||||
|
NS_GET_NSTYPE = 0x2000b703
|
||||||
|
NS_GET_OWNER_UID = 0x2000b704
|
||||||
|
NS_GET_PARENT = 0x2000b702
|
||||||
|
NS_GET_USERNS = 0x2000b701
|
||||||
OCFS2_SUPER_MAGIC = 0x7461636f
|
OCFS2_SUPER_MAGIC = 0x7461636f
|
||||||
OCRNL = 0x8
|
OCRNL = 0x8
|
||||||
OFDEL = 0x80
|
OFDEL = 0x80
|
||||||
|
@ -2049,6 +2053,8 @@ const (
|
||||||
SIOCDRARP = 0x8960
|
SIOCDRARP = 0x8960
|
||||||
SIOCETHTOOL = 0x8946
|
SIOCETHTOOL = 0x8946
|
||||||
SIOCGARP = 0x8954
|
SIOCGARP = 0x8954
|
||||||
|
SIOCGETLINKNAME = 0x89e0
|
||||||
|
SIOCGETNODEID = 0x89e1
|
||||||
SIOCGHWTSTAMP = 0x89b1
|
SIOCGHWTSTAMP = 0x89b1
|
||||||
SIOCGIFADDR = 0x8915
|
SIOCGIFADDR = 0x8915
|
||||||
SIOCGIFBR = 0x8940
|
SIOCGIFBR = 0x8940
|
||||||
|
@ -2484,6 +2490,71 @@ const (
|
||||||
TIOCSTOP = 0x2000746f
|
TIOCSTOP = 0x2000746f
|
||||||
TIOCSWINSZ = 0x80087467
|
TIOCSWINSZ = 0x80087467
|
||||||
TIOCVHANGUP = 0x20005437
|
TIOCVHANGUP = 0x20005437
|
||||||
|
TIPC_ADDR_ID = 0x3
|
||||||
|
TIPC_ADDR_MCAST = 0x1
|
||||||
|
TIPC_ADDR_NAME = 0x2
|
||||||
|
TIPC_ADDR_NAMESEQ = 0x1
|
||||||
|
TIPC_CFG_SRV = 0x0
|
||||||
|
TIPC_CLUSTER_BITS = 0xc
|
||||||
|
TIPC_CLUSTER_MASK = 0xfff000
|
||||||
|
TIPC_CLUSTER_OFFSET = 0xc
|
||||||
|
TIPC_CLUSTER_SIZE = 0xfff
|
||||||
|
TIPC_CONN_SHUTDOWN = 0x5
|
||||||
|
TIPC_CONN_TIMEOUT = 0x82
|
||||||
|
TIPC_CRITICAL_IMPORTANCE = 0x3
|
||||||
|
TIPC_DESTNAME = 0x3
|
||||||
|
TIPC_DEST_DROPPABLE = 0x81
|
||||||
|
TIPC_ERRINFO = 0x1
|
||||||
|
TIPC_ERR_NO_NAME = 0x1
|
||||||
|
TIPC_ERR_NO_NODE = 0x3
|
||||||
|
TIPC_ERR_NO_PORT = 0x2
|
||||||
|
TIPC_ERR_OVERLOAD = 0x4
|
||||||
|
TIPC_GROUP_JOIN = 0x87
|
||||||
|
TIPC_GROUP_LEAVE = 0x88
|
||||||
|
TIPC_GROUP_LOOPBACK = 0x1
|
||||||
|
TIPC_GROUP_MEMBER_EVTS = 0x2
|
||||||
|
TIPC_HIGH_IMPORTANCE = 0x2
|
||||||
|
TIPC_IMPORTANCE = 0x7f
|
||||||
|
TIPC_LINK_STATE = 0x2
|
||||||
|
TIPC_LOW_IMPORTANCE = 0x0
|
||||||
|
TIPC_MAX_BEARER_NAME = 0x20
|
||||||
|
TIPC_MAX_IF_NAME = 0x10
|
||||||
|
TIPC_MAX_LINK_NAME = 0x44
|
||||||
|
TIPC_MAX_MEDIA_NAME = 0x10
|
||||||
|
TIPC_MAX_USER_MSG_SIZE = 0x101d0
|
||||||
|
TIPC_MCAST_BROADCAST = 0x85
|
||||||
|
TIPC_MCAST_REPLICAST = 0x86
|
||||||
|
TIPC_MEDIUM_IMPORTANCE = 0x1
|
||||||
|
TIPC_NODEID_LEN = 0x10
|
||||||
|
TIPC_NODE_BITS = 0xc
|
||||||
|
TIPC_NODE_MASK = 0xfff
|
||||||
|
TIPC_NODE_OFFSET = 0x0
|
||||||
|
TIPC_NODE_RECVQ_DEPTH = 0x83
|
||||||
|
TIPC_NODE_SIZE = 0xfff
|
||||||
|
TIPC_NODE_STATE = 0x0
|
||||||
|
TIPC_OK = 0x0
|
||||||
|
TIPC_PUBLISHED = 0x1
|
||||||
|
TIPC_RESERVED_TYPES = 0x40
|
||||||
|
TIPC_RETDATA = 0x2
|
||||||
|
TIPC_SERVICE_ADDR = 0x2
|
||||||
|
TIPC_SERVICE_RANGE = 0x1
|
||||||
|
TIPC_SOCKET_ADDR = 0x3
|
||||||
|
TIPC_SOCK_RECVQ_DEPTH = 0x84
|
||||||
|
TIPC_SOCK_RECVQ_USED = 0x89
|
||||||
|
TIPC_SRC_DROPPABLE = 0x80
|
||||||
|
TIPC_SUBSCR_TIMEOUT = 0x3
|
||||||
|
TIPC_SUB_CANCEL = 0x4
|
||||||
|
TIPC_SUB_PORTS = 0x1
|
||||||
|
TIPC_SUB_SERVICE = 0x2
|
||||||
|
TIPC_TOP_SRV = 0x1
|
||||||
|
TIPC_WAIT_FOREVER = -0x1
|
||||||
|
TIPC_WITHDRAWN = 0x2
|
||||||
|
TIPC_ZONE_BITS = 0x8
|
||||||
|
TIPC_ZONE_CLUSTER_MASK = 0xfffff000
|
||||||
|
TIPC_ZONE_MASK = 0xff000000
|
||||||
|
TIPC_ZONE_OFFSET = 0x18
|
||||||
|
TIPC_ZONE_SCOPE = 0x1
|
||||||
|
TIPC_ZONE_SIZE = 0xff
|
||||||
TMPFS_MAGIC = 0x1021994
|
TMPFS_MAGIC = 0x1021994
|
||||||
TOSTOP = 0x100
|
TOSTOP = 0x100
|
||||||
TPACKET_ALIGNMENT = 0x10
|
TPACKET_ALIGNMENT = 0x10
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_386.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_386.go
generated
vendored
|
@ -285,6 +285,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -425,6 +432,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2521,3 +2529,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
generated
vendored
|
@ -285,6 +285,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -426,6 +433,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2535,3 +2543,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
generated
vendored
|
@ -289,6 +289,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]uint8
|
Data [14]uint8
|
||||||
|
@ -429,6 +436,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2512,3 +2520,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
generated
vendored
|
@ -286,6 +286,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -427,6 +434,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2514,3 +2522,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
generated
vendored
|
@ -288,6 +288,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -428,6 +435,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2518,3 +2526,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
generated
vendored
|
@ -286,6 +286,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -427,6 +434,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2516,3 +2524,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
generated
vendored
|
@ -286,6 +286,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -427,6 +434,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2516,3 +2524,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
generated
vendored
|
@ -288,6 +288,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -428,6 +435,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x8
|
SizeofIovec = 0x8
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2518,3 +2526,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
generated
vendored
|
@ -287,6 +287,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]uint8
|
Data [14]uint8
|
||||||
|
@ -428,6 +435,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2524,3 +2532,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
generated
vendored
|
@ -287,6 +287,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]uint8
|
Data [14]uint8
|
||||||
|
@ -428,6 +435,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2524,3 +2532,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
generated
vendored
|
@ -286,6 +286,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]uint8
|
Data [14]uint8
|
||||||
|
@ -427,6 +434,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2542,3 +2550,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
generated
vendored
|
@ -285,6 +285,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -426,6 +433,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2538,3 +2546,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
63
vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
generated
vendored
63
vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
generated
vendored
|
@ -289,6 +289,13 @@ type RawSockaddrXDP struct {
|
||||||
|
|
||||||
type RawSockaddrPPPoX [0x1e]byte
|
type RawSockaddrPPPoX [0x1e]byte
|
||||||
|
|
||||||
|
type RawSockaddrTIPC struct {
|
||||||
|
Family uint16
|
||||||
|
Addrtype uint8
|
||||||
|
Scope int8
|
||||||
|
Addr [12]byte
|
||||||
|
}
|
||||||
|
|
||||||
type RawSockaddr struct {
|
type RawSockaddr struct {
|
||||||
Family uint16
|
Family uint16
|
||||||
Data [14]int8
|
Data [14]int8
|
||||||
|
@ -430,6 +437,7 @@ const (
|
||||||
SizeofSockaddrVM = 0x10
|
SizeofSockaddrVM = 0x10
|
||||||
SizeofSockaddrXDP = 0x10
|
SizeofSockaddrXDP = 0x10
|
||||||
SizeofSockaddrPPPoX = 0x1e
|
SizeofSockaddrPPPoX = 0x1e
|
||||||
|
SizeofSockaddrTIPC = 0x10
|
||||||
SizeofLinger = 0x8
|
SizeofLinger = 0x8
|
||||||
SizeofIovec = 0x10
|
SizeofIovec = 0x10
|
||||||
SizeofIPMreq = 0x8
|
SizeofIPMreq = 0x8
|
||||||
|
@ -2519,3 +2527,58 @@ type LoopInfo64 struct {
|
||||||
Encrypt_key [32]uint8
|
Encrypt_key [32]uint8
|
||||||
Init [2]uint64
|
Init [2]uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TIPCSocketAddr struct {
|
||||||
|
Ref uint32
|
||||||
|
Node uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceRange struct {
|
||||||
|
Type uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCServiceName struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Domain uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSubscr struct {
|
||||||
|
Seq TIPCServiceRange
|
||||||
|
Timeout uint32
|
||||||
|
Filter uint32
|
||||||
|
Handle [8]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCEvent struct {
|
||||||
|
Event uint32
|
||||||
|
Lower uint32
|
||||||
|
Upper uint32
|
||||||
|
Port TIPCSocketAddr
|
||||||
|
S TIPCSubscr
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCGroupReq struct {
|
||||||
|
Type uint32
|
||||||
|
Instance uint32
|
||||||
|
Scope uint32
|
||||||
|
Flags uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCLNReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id uint32
|
||||||
|
Linkname [68]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
type TIPCSIOCNodeIDReq struct {
|
||||||
|
Peer uint32
|
||||||
|
Id [16]int8
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
TIPC_CLUSTER_SCOPE = 0x2
|
||||||
|
TIPC_NODE_SCOPE = 0x3
|
||||||
|
)
|
||||||
|
|
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
|
@ -25,5 +25,5 @@ github.com/valyala/gozstd
|
||||||
github.com/valyala/histogram
|
github.com/valyala/histogram
|
||||||
# github.com/valyala/quicktemplate v1.2.0
|
# github.com/valyala/quicktemplate v1.2.0
|
||||||
github.com/valyala/quicktemplate
|
github.com/valyala/quicktemplate
|
||||||
# golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a
|
# golang.org/x/sys v0.0.0-20190904154756-749cb33beabd
|
||||||
golang.org/x/sys/unix
|
golang.org/x/sys/unix
|
||||||
|
|
Loading…
Reference in a new issue