15 lines
270 B
C++
15 lines
270 B
C++
#include "ClientTask.hpp"
|
|
|
|
|
|
namespace drp::task {
|
|
|
|
|
|
void ClientTask::handle(Context& context) {
|
|
// TODO(Faraphel): connect to an ntp server
|
|
|
|
// TODO(Faraphel): check if the server is still reachable.
|
|
// if connection lost, go back to undefined mode.
|
|
}
|
|
|
|
|
|
}
|