EtherLib/prefab/conn_blocks/icmp_connblock.h
Wiesner András 8676a392e5 - TCP basic implementation added
- TCPWindow added
- Checksum bug fixed (again)
- CBD introduced
- ConnBlock modified
- PackSieve report funtionality modified to decrease memory consumption
2023-01-30 11:04:46 +01:00

22 lines
481 B
C

#ifndef ETHERLIB_TEST_ICMP_CONNBLOCK_H
#define ETHERLIB_TEST_ICMP_CONNBLOCK_H
#include "../../connection_block.h"
struct EthInterface_;
/**
* Create ICMP connection block.
* @param intf associated Ethernet interface
* @return connection block
*/
ConnBlock icmp_new_connblock(struct EthInterface_ * intf);
/**
* Print ICMP connblock report.
* @param connBlock ICMP connblock
*/
void icmp_print_report(const ConnBlock* connBlock);
#endif //ETHERLIB_TEST_ICMP_CONNBLOCK_H