1
0
mirror of https://github.com/DNSCrypt/dnscrypt-proxy.git synced 2025-01-15 02:35:53 +01:00
dnscrypt-proxy/vendor/golang.org/x/net/ipv4/control_stub.go

15 lines
540 B
Go
Raw Normal View History

// Copyright 2012 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.
2021-02-20 18:55:58 +01:00
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos
2020-11-06 07:43:29 +01:00
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows,!zos
package ipv4
import "golang.org/x/net/internal/socket"
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
2019-03-14 02:17:58 +01:00
return errNotImplemented
}