discovery

This commit is contained in:
Gregory Salaun 2024-10-30 22:46:48 +07:00
parent 8b3658b5af
commit 91fc5836eb

View File

@ -307,7 +307,6 @@ func DiscoverFlexRadio() (bool, *Discovery) {
if err != nil { if err != nil {
Log.Errorln("Could not receive UDP packets to discover FlexRadio") Log.Errorln("Could not receive UDP packets to discover FlexRadio")
} }
defer pc.Close()
buf := make([]byte, 1024) buf := make([]byte, 1024)
@ -321,14 +320,14 @@ func DiscoverFlexRadio() (bool, *Discovery) {
match := discoverRe.FindStringSubmatch(string(buf[:n])) match := discoverRe.FindStringSubmatch(string(buf[:n]))
if len(match) > 0 { if len(match) > 0 {
d := Discovery{ d := &Discovery{
NickName: match[4], NickName: match[4],
Model: match[1], Model: match[1],
Serial: match[2], Serial: match[2],
Version: match[3], Version: match[3],
IP: match[5], IP: match[5],
} }
return true, &d return true, d
} }
} }
} else { } else {