Retro68/gcc/libgo/go/net/cgo_stub.go

38 lines
1.1 KiB
Go
Raw Normal View History

// Copyright 2011 The Go Authors. All rights reserved.
2012-03-27 23:13:14 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !cgo || netgo
2012-03-27 23:13:14 +00:00
package net
import "context"
2017-04-10 11:32:00 +00:00
func init() { netGo = true }
type addrinfoErrno int
func (eai addrinfoErrno) Error() string { return "<nil>" }
func (eai addrinfoErrno) Temporary() bool { return false }
func (eai addrinfoErrno) Timeout() bool { return false }
func cgoLookupHost(ctx context.Context, name string) (addrs []string, err error, completed bool) {
2012-03-27 23:13:14 +00:00
return nil, nil, false
}
func cgoLookupPort(ctx context.Context, network, service string) (port int, err error, completed bool) {
2012-03-27 23:13:14 +00:00
return 0, nil, false
}
2019-06-02 15:48:37 +00:00
func cgoLookupIP(ctx context.Context, network, name string) (addrs []IPAddr, err error, completed bool) {
2012-03-27 23:13:14 +00:00
return nil, nil, false
}
func cgoLookupCNAME(ctx context.Context, name string) (cname string, err error, completed bool) {
2012-03-27 23:13:14 +00:00
return "", nil, false
}
2017-04-10 11:32:00 +00:00
func cgoLookupPTR(ctx context.Context, addr string) (ptrs []string, err error, completed bool) {
2017-04-10 11:32:00 +00:00
return nil, nil, false
}