File: upstream-net.patch

package info (click to toggle)
golang-github-hashicorp-mdns 0.0~git20150317.0.2b439d3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 128 kB
  • ctags: 75
  • sloc: makefile: 2
file content (19 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
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"
 )