mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
3c5e17423a
Signed-off-by: deadprogram <ron@hybridgroup.com>
Table of Contents
Netlinker
TinyGo's network device driver model comprises two Go interfaces: Netdever and Netlinker. This README covers Netlinker.
The Netlinker interface describes an L2 network interface. A netlink is a concrete implementation of a Netlinker. See Netdev for the L4/L3 network interface.
A netlink can:
- Connect/disconnect device to/from network
- Notify of network events (e.g. link UP/DOWN)
- Send and receive Ethernet packets
- Get/set device's hardware address (MAC address)