- IGMPv2 capabilities added (report membership, leave group) - ICMP capabilities added (ping) - Tx Message Queue added
16 lines
353 B
C
16 lines
353 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);
|
|
|
|
#endif //ETHERLIB_TEST_ICMP_CONNBLOCK_H
|