2014-09-21 17:33:12 +00:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// Network service port manipulations
|
2012-03-27 23:13:14 +00:00
|
|
|
|
|
|
|
package net
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// parsePort parses port as a network service port number for both
|
|
|
|
// TCP and UDP.
|
|
|
|
func parsePort(net, port string) (int, error) {
|
|
|
|
p, i, ok := dtoi(port, 0)
|
|
|
|
if !ok || i != len(port) {
|
|
|
|
var err error
|
|
|
|
p, err = LookupPort(net, port)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
if p < 0 || p > 0xFFFF {
|
|
|
|
return 0, &AddrError{"invalid port", port}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
return p, nil
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|