mirror of
https://github.com/syncthing/syncthing.git
synced 2026-05-02 12:15:31 -04:00
Don't attempt to use broadcast with IPv6 (ref #346)
This commit is contained in:
@@ -83,7 +83,7 @@ func (b *Beacon) writer() {
|
||||
|
||||
var dsts []net.IP
|
||||
for _, addr := range addrs {
|
||||
if iaddr, ok := addr.(*net.IPNet); ok && iaddr.IP.IsGlobalUnicast() {
|
||||
if iaddr, ok := addr.(*net.IPNet); ok && iaddr.IP.IsGlobalUnicast() && iaddr.IP.To4() != nil {
|
||||
baddr := bcast(iaddr)
|
||||
dsts = append(dsts, baddr.IP)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user