ntp 0.5.0

Library for parsing and communicating over Network Time Protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io;
use conv::Unrepresentable;

error_chain! { 
    foreign_links {
        IOError(io::Error);
        UnrepresentableU8(Unrepresentable<u8>);
        UnrepresentableU32(Unrepresentable<u32>);
    }
}