sys_unix.go 342 B

12345678910111213141516
  1. // Copyright 2013 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build darwin freebsd linux netbsd openbsd
  5. package ipv6
  6. import "syscall"
  7. const sysSizeofMTUInfo = 0x20
  8. type sysMTUInfo struct {
  9. Addr syscall.RawSockaddrInet6
  10. MTU uint32
  11. }