mirror of
https://github.com/golang/go
synced 2024-11-21 21:34:40 -07:00
net: update DialIP comments to mention protocols
Fixes #2637. R=golang-dev, mikioh.mikioh, iant CC=golang-dev https://golang.org/cl/5508043
This commit is contained in:
parent
b682da32b3
commit
2469a817ba
@ -84,8 +84,8 @@ func splitNetProto(netProto string) (net string, proto int, err error) {
|
||||
return
|
||||
}
|
||||
|
||||
// DialIP connects to the remote address raddr on the network net,
|
||||
// which must be "ip", "ip4", or "ip6".
|
||||
// DialIP connects to the remote address raddr on the network protocol netProto,
|
||||
// which must be "ip", "ip4", or "ip6" followed by a colon and a protocol number or name.
|
||||
func DialIP(netProto string, laddr, raddr *IPAddr) (c *IPConn, err error) {
|
||||
return nil, os.EPLAN9
|
||||
}
|
||||
|
@ -224,8 +224,8 @@ func splitNetProto(netProto string) (net string, proto int, err error) {
|
||||
return net, proto, nil
|
||||
}
|
||||
|
||||
// DialIP connects to the remote address raddr on the network net,
|
||||
// which must be "ip", "ip4", or "ip6".
|
||||
// DialIP connects to the remote address raddr on the network protocol netProto,
|
||||
// which must be "ip", "ip4", or "ip6" followed by a colon and a protocol number or name.
|
||||
func DialIP(netProto string, laddr, raddr *IPAddr) (c *IPConn, err error) {
|
||||
net, proto, err := splitNetProto(netProto)
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user