Remove unnecessary 0.0.0.0 from listeners

This commit is contained in:
Alex X
2023-11-03 12:45:40 +03:00
parent 36166caccc
commit 39645cb3d8
6 changed files with 10 additions and 13 deletions
+1 -1
View File
@@ -219,7 +219,7 @@ func (b *Browser) ListenMulticastUDP() error {
},
}
b.Recv, err = lc2.ListenPacket(ctx, "udp4", "0.0.0.0:5353")
b.Recv, err = lc2.ListenPacket(ctx, "udp4", ":5353")
return err
}