[]
= "mx-remote"
= "Client library for Pulse-Eight MatrixOS devices over UDP multicast/broadcast"
= true
= true
= true
= true
= true
= true
= "README.md"
= ["pulse-eight", "matrixos", "hdmi", "av", "multicast"]
= ["network-programming", "hardware-support", "multimedia"]
[]
# The three knobs this protocol needs are the three std's UdpSocket does not
# expose. SO_REUSEADDR, so a second client on the host can bind the same port;
# IP_MULTICAST_IF, so frames leave by the NIC the caller chose rather than
# whichever one the route table prefers; and the interface-index join, so a
# tagged VLAN with no address of its own can still carry discovery. socket2 is
# the safe wrapper for all three, which is what keeps the core crate free of
# unsafe.
= { = "0.6", = ["all"] }
# Enumerating the host's interfaces: their addresses, netmasks and indices.
# Needed to pick a default interface, to derive the broadcast address of the
# chosen one, and to turn an interface name into the index the join wants.
= "0.15"
# The client's own identifier has to be unique on the network and is written to
# disk, so it comes from the OS entropy source rather than from the clock.
= "0.2"