mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 09:41:44 +08:00
serve dlna: only select interfaces which can multicast for SSDP
Before this change we used all UP interfaces - now we need the interfaces to be UP and MULTICAST capable. See: https://forum.rclone.org/t/error-using-rclone-serve-dlna-on-termux/11083
This commit is contained in:
parent
6ca00c21a4
commit
27a9d0f570
|
@ -47,10 +47,9 @@ func listInterfaces() []net.Interface {
|
|||
|
||||
var active []net.Interface
|
||||
for _, intf := range ifs {
|
||||
if intf.Flags&net.FlagUp == 0 || intf.MTU <= 0 {
|
||||
continue
|
||||
if intf.Flags&net.FlagUp != 0 && intf.Flags&net.FlagMulticast != 0 && intf.MTU > 0 {
|
||||
active = append(active, intf)
|
||||
}
|
||||
active = append(active, intf)
|
||||
}
|
||||
return active
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user