feat: wi-fi - join WPA2/WPA3-PSK networks and carry traffic like ethernet

This commit is contained in:
2026-08-06 19:44:35 +02:00
parent a01e63c717
commit bbe1df62fd
40 changed files with 5878 additions and 272 deletions
+4 -1
View File
@@ -30,7 +30,10 @@ namespace Net::Ethernet {
// Send an Ethernet frame with the given EtherType and payload
bool Send(const uint8_t* destMac, uint16_t etherType, const uint8_t* payload, uint16_t payloadLen);
// Called by E1000 RX handler to dispatch received frames
// Called by a driver's RX handler to dispatch received frames
void OnFrameReceived(const uint8_t* data, uint16_t length);
// MAC address of the interface currently carrying traffic
const uint8_t* GetMacAddress();
}