| 1234567891011121314151617181920212223 |
- // Copyright 2013 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package ipv6
- type sysSockoptLen uint32
- const (
- sysSizeofPacketInfo = 0x14
- sysSizeofMulticastReq = 0x14
- sysSizeofICMPFilter = 0x20
- )
- type sysPacketInfo struct {
- IP [16]byte
- IfIndex uint32
- }
- type sysMulticastReq struct {
- IP [16]byte
- IfIndex uint32
- }
|