Skip to content

Commit

Permalink
More debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
vikulin committed Jun 19, 2024
1 parent 25a2b73 commit 4ca6f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multicast/multicast.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func (m *Multicast) _stop() error {
func (m *Multicast) _updateInterfaces() {
interfaces := m._getAllowedInterfaces()
for name, info := range interfaces {
addrs, err := info.iface.Addrs()
addrs, err := anet.InterfaceAddrsByInterface(&info.iface)
if err != nil {
m.log.Warnf("Failed up get addresses for interface %s: %s", name, err)
delete(interfaces, name)
Expand Down

0 comments on commit 4ca6f4d

Please sign in to comment.