ntpd 1.7.2

Full-featured implementation of NTP with NTS support
Documentation
1
2
3
4
5
6
7
8
#![forbid(unsafe_code)]

use std::process;

fn main() {
    let result = ntpd::daemon_main();
    process::exit(if result.is_ok() { 0 } else { 1 });
}