1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: replace go.net fork imports with upstream
Origin: https://github.com/hashicorp/mdns/pull/45
Bug: https://github.com/hashicorp/mdns/issues/44
Index: golang-github-hashicorp-mdns/client.go
===================================================================
--- golang-github-hashicorp-mdns.orig/client.go
+++ golang-github-hashicorp-mdns/client.go
@@ -8,8 +8,8 @@ import (
"sync"
"time"
- "github.com/hashicorp/go.net/ipv4"
- "github.com/hashicorp/go.net/ipv6"
+ "golang.org/x/net/ipv4"
+ "golang.org/x/net/ipv6"
"github.com/miekg/dns"
)
|