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:
Andrew Gerrand 2012-01-05 15:18:08 +11:00
parent b682da32b3
commit 2469a817ba
2 changed files with 4 additions and 4 deletions

View File

@ -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
}

View File

@ -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 {