mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-05 20:39:19 +00:00
Show more debug messages
This commit is contained in:
@ -12,8 +12,16 @@ namespace NetworkNTP
|
||||
netdbg("Received UDP packet for NTP.");
|
||||
}
|
||||
|
||||
NTP::NTP(NetworkUDP::Socket *Socket) : NetworkUDP::UDPEvents() { this->UDPSocket = Socket; }
|
||||
NTP::~NTP() {}
|
||||
NTP::NTP(NetworkUDP::Socket *Socket) : NetworkUDP::UDPEvents()
|
||||
{
|
||||
debug("NTP interface %#lx created.", this);
|
||||
this->UDPSocket = Socket;
|
||||
}
|
||||
|
||||
NTP::~NTP()
|
||||
{
|
||||
debug("NTP interface %#lx destroyed.", this);
|
||||
}
|
||||
|
||||
int NTP::ReadTime()
|
||||
{
|
||||
|
Reference in New Issue
Block a user