- 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)
19 lines
305 B
C
19 lines
305 B
C
//
|
|
// Created by epagris on 2022.11.07..
|
|
//
|
|
|
|
#include "connection_block.h"
|
|
#include "eth_interface.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
void connb_init_defaults(ConnBlock *connb) {
|
|
// ...
|
|
}
|
|
|
|
void connb_remove(ConnBlock *connb) {
|
|
if (connb != NULL) {
|
|
packsieve_remove_layer(connb->sieveLayer);
|
|
}
|
|
}
|