bump(code.google.com/p/go.net): a1b606ad6242

This commit is contained in:
Ben Johnson
2013-12-20 15:39:29 -07:00
parent 80bc68eb49
commit b7854354ff
31 changed files with 2014 additions and 1 deletions

View File

@ -0,0 +1,16 @@
// 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.
// +build darwin freebsd linux netbsd openbsd
package ipv6
import "syscall"
const sysSizeofMTUInfo = 0x20
type sysMTUInfo struct {
Addr syscall.RawSockaddrInet6
MTU uint32
}