summaryrefslogtreecommitdiff
path: root/client.go
blob: 27e5d54b4629f24e65dd5bcb266f96eb5088824a (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
30
31
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 Client struct {
	HardwareAddr net.HardwareAddr
}

func NewClient(mac string) (Client, error) {
	hardwareAddr, err := net.ParseMAC(mac)
	if err != nil {
		return Client{}, err
	}

	return fromHardwareAddr(hardwareAddr)
}

func fromHardwareAddr(addr net.HardwareAddr) (Client, error) {
	if len(addr) != 6 {
		return Client{}, fmt.Errorf("Only IEEE 802 MAC-48 addresses supported")
	}

	return Client{HardwareAddr: addr}, nil
}