Show more debug messages

This commit is contained in:
Alex
2023-02-18 04:07:40 +02:00
parent 20064c05ff
commit ad1c2214ef
9 changed files with 47 additions and 14 deletions

View File

@ -6,8 +6,16 @@
namespace NetworkICMPv4
{
ICMPv4::ICMPv4(NetworkInterfaceManager::DeviceInterface *Interface) { this->Interface = Interface; }
ICMPv4::~ICMPv4() {}
ICMPv4::ICMPv4(NetworkInterfaceManager::DeviceInterface *Interface)
{
debug("ICMPv4 interface %#lx created.", this);
this->Interface = Interface;
}
ICMPv4::~ICMPv4()
{
debug("ICMPv4 interface %#lx destroyed.", this);
}
void ICMPv4::Send(/* ???? */)
{