1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
9 // UDPAddr represents the address of a UDP end point.
15 // Network returns the address's network name, "udp".
16 func (a *UDPAddr) Network() string { return "udp" }
18 func (a *UDPAddr) String() string {
22 return JoinHostPort(a.IP.String(), itoa(a.Port))
25 // ResolveUDPAddr parses addr as a UDP address of the form
26 // host:port and resolves domain names or port names to
27 // numeric addresses on the network net, which must be "udp",
28 // "udp4" or "udp6". A literal IPv6 host address must be
29 // enclosed in square brackets, as in "[::]:80".
30 func ResolveUDPAddr(net, addr string) (*UDPAddr, error) {
31 ip, port, err := hostPortToIP(net, addr)
35 return &UDPAddr{ip, port}, nil