summaryrefslogtreecommitdiff
path: root/client.go
AgeCommit message (Collapse)Author
2024-10-03Remove soundbox.Clientxegineering
This data structure only contained a net.HardwareAddr and did not provide much more useful functionality. Thus the net.HardwareAddr type should be used directly.
2024-10-03Make soundbox.StreamingPort privatexegineering
It is planned to provide a function for streaming. Thus the streaming port is not required to be exposed. If there is a use case the streaming port can be exposed again.
2024-10-02Rename Port to StreamingPortxegineering
It is expected that further ports (maybe for information via HTTP) are added in the future. To keep the public API stable this should be taken into account before the first release.
2024-10-02Rename Soundbox to Clientxegineering
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`.