mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
f5be3578a8
2/3 Added vendor/ dir to lock down dependent pkg versions. The author of git.schwanenlied.me/yawning/{chacha20,newhope,kyber}.git has copied their repos to gitlab.com/yawning/ but some imports of chacha20 from newhope still inconsistently refer to git.schwanenlied.me/, breaking build. Licenses for chacha20 also changed from CC0 to AGPL, which may or may not be an issue. Until the two aforementioned issues are resolved, locking to last-good versions is probably the best way forward for now. To build with vendored deps, use make VENDOR=1 clean all 3/3 Moved body of CI push script into bacillus/
93 lines
1.8 KiB
Go
93 lines
1.8 KiB
Go
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
|
|
// cgo -godefs defs_openbsd.go
|
|
|
|
package ipv6
|
|
|
|
const (
|
|
sysIPV6_UNICAST_HOPS = 0x4
|
|
sysIPV6_MULTICAST_IF = 0x9
|
|
sysIPV6_MULTICAST_HOPS = 0xa
|
|
sysIPV6_MULTICAST_LOOP = 0xb
|
|
sysIPV6_JOIN_GROUP = 0xc
|
|
sysIPV6_LEAVE_GROUP = 0xd
|
|
sysIPV6_PORTRANGE = 0xe
|
|
sysICMP6_FILTER = 0x12
|
|
|
|
sysIPV6_CHECKSUM = 0x1a
|
|
sysIPV6_V6ONLY = 0x1b
|
|
|
|
sysIPV6_RTHDRDSTOPTS = 0x23
|
|
|
|
sysIPV6_RECVPKTINFO = 0x24
|
|
sysIPV6_RECVHOPLIMIT = 0x25
|
|
sysIPV6_RECVRTHDR = 0x26
|
|
sysIPV6_RECVHOPOPTS = 0x27
|
|
sysIPV6_RECVDSTOPTS = 0x28
|
|
|
|
sysIPV6_USE_MIN_MTU = 0x2a
|
|
sysIPV6_RECVPATHMTU = 0x2b
|
|
|
|
sysIPV6_PATHMTU = 0x2c
|
|
|
|
sysIPV6_PKTINFO = 0x2e
|
|
sysIPV6_HOPLIMIT = 0x2f
|
|
sysIPV6_NEXTHOP = 0x30
|
|
sysIPV6_HOPOPTS = 0x31
|
|
sysIPV6_DSTOPTS = 0x32
|
|
sysIPV6_RTHDR = 0x33
|
|
|
|
sysIPV6_AUTH_LEVEL = 0x35
|
|
sysIPV6_ESP_TRANS_LEVEL = 0x36
|
|
sysIPV6_ESP_NETWORK_LEVEL = 0x37
|
|
sysIPSEC6_OUTSA = 0x38
|
|
sysIPV6_RECVTCLASS = 0x39
|
|
|
|
sysIPV6_AUTOFLOWLABEL = 0x3b
|
|
sysIPV6_IPCOMP_LEVEL = 0x3c
|
|
|
|
sysIPV6_TCLASS = 0x3d
|
|
sysIPV6_DONTFRAG = 0x3e
|
|
sysIPV6_PIPEX = 0x3f
|
|
|
|
sysIPV6_RTABLE = 0x1021
|
|
|
|
sysIPV6_PORTRANGE_DEFAULT = 0x0
|
|
sysIPV6_PORTRANGE_HIGH = 0x1
|
|
sysIPV6_PORTRANGE_LOW = 0x2
|
|
|
|
sizeofSockaddrInet6 = 0x1c
|
|
sizeofInet6Pktinfo = 0x14
|
|
sizeofIPv6Mtuinfo = 0x20
|
|
|
|
sizeofIPv6Mreq = 0x14
|
|
|
|
sizeofICMPv6Filter = 0x20
|
|
)
|
|
|
|
type sockaddrInet6 struct {
|
|
Len uint8
|
|
Family uint8
|
|
Port uint16
|
|
Flowinfo uint32
|
|
Addr [16]byte /* in6_addr */
|
|
Scope_id uint32
|
|
}
|
|
|
|
type inet6Pktinfo struct {
|
|
Addr [16]byte /* in6_addr */
|
|
Ifindex uint32
|
|
}
|
|
|
|
type ipv6Mtuinfo struct {
|
|
Addr sockaddrInet6
|
|
Mtu uint32
|
|
}
|
|
|
|
type ipv6Mreq struct {
|
|
Multiaddr [16]byte /* in6_addr */
|
|
Interface uint32
|
|
}
|
|
|
|
type icmpv6Filter struct {
|
|
Filt [8]uint32
|
|
}
|