mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-10 14:59:19 +00:00
Show more debug messages
This commit is contained in:
@ -13,8 +13,15 @@ namespace NetworkEthernet
|
||||
|
||||
Vector<EthernetEventHelperStruct> RegisteredEvents;
|
||||
|
||||
Ethernet::Ethernet(NetworkInterfaceManager::DeviceInterface *Interface) : NetworkInterfaceManager::Events(Interface) { this->Interface = Interface; }
|
||||
Ethernet::~Ethernet() {}
|
||||
Ethernet::Ethernet(NetworkInterfaceManager::DeviceInterface *Interface) : NetworkInterfaceManager::Events(Interface)
|
||||
{
|
||||
debug("Ethernet interface %#lx created.", this);
|
||||
this->Interface = Interface;
|
||||
}
|
||||
Ethernet::~Ethernet()
|
||||
{
|
||||
debug("Ethernet interface %#lx destroyed.", this);
|
||||
}
|
||||
|
||||
void Ethernet::Send(MediaAccessControl MAC, FrameType Type, uint8_t *Data, uint64_t Length)
|
||||
{
|
||||
|
Reference in New Issue
Block a user