discovery
This commit is contained in:
parent
8b3658b5af
commit
91fc5836eb
@ -307,7 +307,6 @@ func DiscoverFlexRadio() (bool, *Discovery) {
|
||||
if err != nil {
|
||||
Log.Errorln("Could not receive UDP packets to discover FlexRadio")
|
||||
}
|
||||
defer pc.Close()
|
||||
|
||||
buf := make([]byte, 1024)
|
||||
|
||||
@ -321,14 +320,14 @@ func DiscoverFlexRadio() (bool, *Discovery) {
|
||||
match := discoverRe.FindStringSubmatch(string(buf[:n]))
|
||||
|
||||
if len(match) > 0 {
|
||||
d := Discovery{
|
||||
d := &Discovery{
|
||||
NickName: match[4],
|
||||
Model: match[1],
|
||||
Serial: match[2],
|
||||
Version: match[3],
|
||||
IP: match[5],
|
||||
}
|
||||
return true, &d
|
||||
return true, d
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user