ipconfig 0.1.2

Get network adapters information and network configuration for windows.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error_chain! {
    foreign_links {
        Utf8(::std::str::Utf8Error);
        FromUtf16(::std::string::FromUtf16Error);
        Io(::std::io::Error);
    }

    errors {
        Os(error: u32) {
            description("Win32 error occurred")
            display("Win32 error occurred: {}", error)
        }
    }
}