go.mod,wgengine/magicsock: update wireguard-go (#16148)

Our conn.Bind implementation is updated to make Send() offset-aware for
future VXLAN/Geneve encapsulation support.

Updates tailscale/corp#27502

Signed-off-by: Jordan Whited <jordan@tailscale.com>
This commit is contained in:
Jordan Whited
2025-06-02 13:22:28 -07:00
committed by GitHub
parent c9a5d638e9
commit 5f35143d83
10 changed files with 43 additions and 35 deletions
+1 -1
View File
@@ -3147,7 +3147,7 @@ func TestNetworkDownSendErrors(t *testing.T) {
defer conn.Close()
conn.SetNetworkUp(false)
if err := conn.Send([][]byte{{00}}, &lazyEndpoint{}); err == nil {
if err := conn.Send([][]byte{{00}}, &lazyEndpoint{}, 0); err == nil {
t.Error("expected error, got nil")
}
resp := httptest.NewRecorder()