mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-30 08:18:01 +00:00
22 lines
293 B
C++
22 lines
293 B
C++
#include <net/ntp.hpp>
|
|
#include <debug.h>
|
|
|
|
#include "../kernel.h"
|
|
|
|
namespace NetworkNTP
|
|
{
|
|
NTP::NTP(NetworkUDP::Socket *Socket) : NetworkUDP::UDPEvents()
|
|
{
|
|
this->Socket = Socket;
|
|
}
|
|
|
|
NTP::~NTP()
|
|
{
|
|
}
|
|
|
|
void ReadTime()
|
|
{
|
|
fixme("ReadTime()");
|
|
}
|
|
}
|