Skip to content

Commit

Permalink
Fix examples by using net.JoinHostPort (miekg#1368)
Browse files Browse the repository at this point in the history
Small fix in the examples to properly work with v6 addresses.

Closes: miekg#1365 miekg#1367

Signed-off-by: Miek Gieben <miek@miek.nl>
  • Loading branch information
miekg authored and aanm committed Jul 29, 2022
1 parent b4b46e2 commit aaf2918
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions example_test.go
Expand Up @@ -16,7 +16,7 @@ func ExampleMX() {
m := new(dns.Msg)
m.SetQuestion("miek.nl.", dns.TypeMX)
m.RecursionDesired = true
r, _, err := c.Exchange(m, config.Servers[0]+":"+config.Port)
r, _, err := c.Exchange(m, net.JoinHostPort(config.Servers[0], config.Port))
if err != nil {
return
}
Expand All @@ -39,7 +39,7 @@ func ExampleDS() {
zone := "miek.nl"
m.SetQuestion(dns.Fqdn(zone), dns.TypeDNSKEY)
m.SetEdns0(4096, true)
r, _, err := c.Exchange(m, config.Servers[0]+":"+config.Port)
r, _, err := c.Exchange(m, net.JoinHostPort(config.Servers[0], config.Port))
if err != nil {
return
}
Expand All @@ -64,6 +64,7 @@ type APAIR struct {
func NewAPAIR() dns.PrivateRdata { return new(APAIR) }

func (rd *APAIR) String() string { return rd.addr[0].String() + " " + rd.addr[1].String() }

func (rd *APAIR) Parse(txt []string) error {
if len(txt) != 2 {
return errors.New("two addresses required for APAIR")
Expand Down

0 comments on commit aaf2918

Please sign in to comment.