From 07741b358ba75350e7be36ee76f45afa18b0461b Mon Sep 17 00:00:00 2001 From: xegineering Date: Wed, 2 Oct 2024 21:18:51 +0200 Subject: Rename Soundbox to Client Since the module name is `soundbox` naming the primary type of the module also `Soundbox` is redundant. Following similar code from the Go standard library this struct is renamed to `Client`. --- soundbox.go | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 soundbox.go (limited to 'soundbox.go') diff --git a/soundbox.go b/soundbox.go deleted file mode 100644 index d6a0a34..0000000 --- a/soundbox.go +++ /dev/null @@ -1,31 +0,0 @@ -package soundbox - -import ( - "fmt" - "net" -) - -// Port is the default network port a soundbox is listening to for incoming -// audio stream data. -const Port = 5316 - -type Soundbox struct { - HardwareAddr net.HardwareAddr -} - -func NewSoundbox(mac string) (Soundbox, error) { - hardwareAddr, err := net.ParseMAC(mac) - if err != nil { - return Soundbox{}, err - } - - return fromHardwareAddr(hardwareAddr) -} - -func fromHardwareAddr(addr net.HardwareAddr) (Soundbox, error) { - if len(addr) != 6 { - return Soundbox{}, fmt.Errorf("Only IEEE 802 MAC-48 addresses supported") - } - - return Soundbox{HardwareAddr: addr}, nil -} -- cgit v1.2.3-70-g09d2