13 releases

0.4.0 Nov 26, 2022
0.3.3 Nov 26, 2022
0.3.2 Sep 3, 2021
0.3.1 May 21, 2021
0.1.15 Nov 29, 2018

#803 in Network programming

Download history 465/week @ 2023-12-14 127/week @ 2023-12-21 127/week @ 2023-12-28 192/week @ 2024-01-04 289/week @ 2024-01-11 328/week @ 2024-01-18 652/week @ 2024-01-25 735/week @ 2024-02-01 442/week @ 2024-02-08 369/week @ 2024-02-15 552/week @ 2024-02-22 502/week @ 2024-02-29 141/week @ 2024-03-07 102/week @ 2024-03-14 116/week @ 2024-03-21 93/week @ 2024-03-28

488 downloads per month
Used in 9 crates (4 directly)

MIT license

57KB
1K SLoC

Rust 640 SLoC // 0.0% comments C 421 SLoC // 0.2% comments

natpmp

Main Nightly

NAT-PMP client library in rust, a rust implementation of the c library libnatpmp(https://github.com/miniupnp/libnatpmp).

Note: src/getgateway.h and src/getgateway.c are from https://github.com/miniupnp/libnatpmp .

Versions

Version 0.2.x supports rust 2018 edition.

Version 0.3.x+ supports tokio and async-std.

Example

Create a natpmp object with system default gateway:

use natpmp::*

let n = Natpmp::new()?

Or a specified gataway:

use std::str::FromStr;
use natpmp::*;

let n = Natpmp::new("192.168.0.1").parse.unwrap())?

To determine the external address, send a public address request:

n.send_public_address_request()?;

To add a port mapping, send a port mapping request:

n.send_port_mapping_request(Protocol::UDP, 4020, 4020, 30)?;

And then read response after a few milliseconds:

use std::thread;
use std::time::Duration;

thread::sleep(Duration::from_millis(250));
let response = n.read_response_or_retry()?;

Check response type and and result:

match response {
    Response::Gateway(gr) => {}
    Response::UDP(ur) => {}
    Response::TCP(tr) => {}
}

Async

Enable feature tokio or async-std in Cargo.toml (default feature tokio).

[dependencies]
natpmp = { version = "0.3", features = ["tokio"] }

Or

[dependencies]
natpmp = { version = "0.3", features = ["async-std"] }

License

MIT

Dependencies

~3–15MB
~174K SLoC