github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/net/ipv6/control_stub.go (about) 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 5 // +build nacl plan9 solaris 6 7 package ipv6 8 9 func setControlMessage(fd int, opt *rawOpt, cf ControlFlags, on bool) error { 10 return errOpNoSupport 11 } 12 13 func newControlMessage(opt *rawOpt) (oob []byte) { 14 return nil 15 } 16 17 func parseControlMessage(b []byte) (*ControlMessage, error) { 18 return nil, errOpNoSupport 19 } 20 21 func marshalControlMessage(cm *ControlMessage) (oob []byte) { 22 return nil 23 }