summaryrefslogtreecommitdiff
path: root/soundbox.go
diff options
context:
space:
mode:
Diffstat (limited to 'soundbox.go')
-rw-r--r--soundbox.go31
1 files changed, 0 insertions, 31 deletions
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
-}