QoL improvements

This commit is contained in:
Alex
2023-03-27 20:11:32 +03:00
parent 3eb6923374
commit 93afcd2210
59 changed files with 612 additions and 424 deletions

View File

@ -4,6 +4,9 @@
#include "../kernel.h"
/* conversion from uint48_t {aka long unsigned int} to long unsigned int:48 may change value */
#pragma GCC diagnostic ignored "-Wconversion"
namespace NetworkARP
{
DiscoveredAddress *ARP::ManageDiscoveredAddresses(DAType Type, InternetProtocol IP, MediaAccessControl MAC)
@ -58,6 +61,10 @@ namespace NetworkARP
}
return nullptr;
}
default:
{
return nullptr;
}
}
return nullptr;
}