blob: 389d1da5d7836e9ef7eb1717a78f93ee350c071f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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
}
if len(hardwareAddr) != 6 {
return Soundbox{}, fmt.Errorf("Only IEEE 802 MAC-48 addresses supported")
}
return Soundbox{
HardwareAddr: hardwareAddr,
}, nil
}
|