pub fn get_default_gateway() -> Result<Ipv4Addr, Error>
Expand description

Get default gateway.

Errors

Examples

use natpmp::*;

let r = get_default_gateway();
assert_eq!(r.is_ok(), true);