From c08175e180f2dba7f6eb039a0fad843dde5f31a2 Mon Sep 17 00:00:00 2001 From: Travis Short <17730193+thetravischannel@users.noreply.github.com> Date: Thu, 26 Dec 2019 21:26:40 -0600 Subject: [PATCH] Update pixiecore.go fix interface metadata errors for MacOS --- pixiecore/pixiecore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixiecore/pixiecore.go b/pixiecore/pixiecore.go index a9c831f..19bef46 100644 --- a/pixiecore/pixiecore.go +++ b/pixiecore/pixiecore.go @@ -227,7 +227,7 @@ func (s *Server) Serve() error { dhcp.Close() return err } - pxe, err := net.ListenPacket("udp", fmt.Sprintf("%s:%d", s.Address, s.PXEPort)) + pxe, err := net.ListenPacket("udp4", fmt.Sprintf("%s:%d", s.Address, s.PXEPort)) if err != nil { dhcp.Close() tftp.Close()