- Timestamping management added - Errors due to reading uninitialized data in ARP fixed - EthInterface reworked, incoming packet notification and payload readout separated (through which fixing concurrent access problems) - RX and TX offloads added - Capability to add a packet sieve layer without prior registration of specific packet class added (this makes it possible to register arbitrary EtherType connection blocks, for example)
13 lines
243 B
C
13 lines
243 B
C
//
|
|
// Created by epagris on 2023.01.30..
|
|
//
|
|
|
|
#include "ethernet_connblock.h"
|
|
#include "../../utils.h"
|
|
|
|
#include "../../eth_interface.h"
|
|
|
|
void ethernet_print_report(const ConnBlock *connBlock) {
|
|
PRINT_HWADDR(connBlock->sieve->intf->mac);
|
|
}
|