go.mod: upgrade to the latest wireguard-go

This pulls in a handful of fixes and an update to Go 1.18.

Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
This commit is contained in:
Josh Bleecher Snyder
2022-03-16 17:16:55 -07:00
committed by Josh Bleecher Snyder
parent 2708544018
commit 5f176f24db
5 changed files with 25 additions and 15 deletions
+3 -3
View File
@@ -8,7 +8,7 @@ import (
"bufio"
"bytes"
"io"
"net"
"net/netip"
"os"
"sort"
"strings"
@@ -256,5 +256,5 @@ func (e dummyEndpoint) ClearSrc() {}
func (e dummyEndpoint) SrcToString() string { return "" }
func (e dummyEndpoint) DstToString() string { return string(e) }
func (e dummyEndpoint) DstToBytes() []byte { return nil }
func (e dummyEndpoint) DstIP() net.IP { return nil }
func (dummyEndpoint) SrcIP() net.IP { return nil }
func (e dummyEndpoint) DstIP() netip.Addr { return netip.Addr{} }
func (dummyEndpoint) SrcIP() netip.Addr { return netip.Addr{} }