mirror of
https://github.com/golang/go
synced 2024-11-06 08:26:12 -07:00
74190735be
Also, flesh out the baked-in /etc/services table for LookupPort a bit. This services map moves from a unix-specific file to a portable file where nacl can use it. Also, remove the duplicated entries in the protocol map in different cases, and just canonicalize the input before looking in the map. Now it handles any case, including MiXeD cAse. In the process, add a test that service names for LookupPort are case insensitive. They were on Windows, but not cgo. Now there's a test and they're case insensitive in all 3+ paths. Maybe it breaks plan9. We'll see. Fixes #17045 Change-Id: Idce7d68703f371727c7505cda03a32bd842298cd Reviewed-on: https://go-review.googlesource.com/28951 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Minux Ma <minux@golang.org>
53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
// Copyright 2011 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 nacl
|
|
|
|
package net
|
|
|
|
import (
|
|
"context"
|
|
"syscall"
|
|
)
|
|
|
|
func lookupProtocol(ctx context.Context, name string) (proto int, err error) {
|
|
return lookupProtocolMap(name)
|
|
}
|
|
|
|
func lookupHost(ctx context.Context, host string) (addrs []string, err error) {
|
|
return nil, syscall.ENOPROTOOPT
|
|
}
|
|
|
|
func lookupIP(ctx context.Context, host string) (addrs []IPAddr, err error) {
|
|
return nil, syscall.ENOPROTOOPT
|
|
}
|
|
|
|
func lookupPort(ctx context.Context, network, service string) (port int, err error) {
|
|
return goLookupPort(network, service)
|
|
}
|
|
|
|
func lookupCNAME(ctx context.Context, name string) (cname string, err error) {
|
|
return "", syscall.ENOPROTOOPT
|
|
}
|
|
|
|
func lookupSRV(ctx context.Context, service, proto, name string) (cname string, srvs []*SRV, err error) {
|
|
return "", nil, syscall.ENOPROTOOPT
|
|
}
|
|
|
|
func lookupMX(ctx context.Context, name string) (mxs []*MX, err error) {
|
|
return nil, syscall.ENOPROTOOPT
|
|
}
|
|
|
|
func lookupNS(ctx context.Context, name string) (nss []*NS, err error) {
|
|
return nil, syscall.ENOPROTOOPT
|
|
}
|
|
|
|
func lookupTXT(ctx context.Context, name string) (txts []string, err error) {
|
|
return nil, syscall.ENOPROTOOPT
|
|
}
|
|
|
|
func lookupAddr(ctx context.Context, addr string) (ptrs []string, err error) {
|
|
return nil, syscall.ENOPROTOOPT
|
|
}
|