From 91fc5836eba064f9ab630937bde877831a8b37da Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 30 Oct 2024 22:46:48 +0700 Subject: [PATCH] discovery --- flexradio.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flexradio.go b/flexradio.go index 2600a6b..97b6ec7 100644 --- a/flexradio.go +++ b/flexradio.go @@ -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 {