No description
Find a file
2025-08-28 14:31:38 +05:30
.github/workflows use the common CI workflow (#32) 2025-01-13 09:00:31 +01:00
examples fix/update UPNP_GetValidIGD() return value handling (#29) 2024-09-09 15:26:28 +00:00
nat_traversal Bump miniupnp to miniupnpc_2_3_3 (#39) 2025-05-28 04:55:25 +02:00
vendor chore: update vendor (#40) 2025-08-28 14:31:38 +05:30
.gitignore Add setup files (#10) 2022-07-12 21:38:27 +03:00
.gitmodules bump miniupnp to miniupnpc_2_2_4 (#15) 2024-01-18 17:14:39 +01:00
config.nims Add setup files (#10) 2022-07-12 21:38:27 +03:00
LICENSE-APACHEv2 initial commit 2019-04-10 14:18:22 +02:00
LICENSE-MIT initial commit 2019-04-10 14:18:22 +02:00
nat_traversal.nimble build static library with -fPIC (#18) 2025-04-22 16:37:34 +02:00
nimble.lock update ci.yml and use non-deprecated results (#26) 2024-06-28 03:55:34 +00:00
README.md libnatpmp: add OS env var to Windows build command (#14) 2023-09-08 16:58:18 +07:00

Nim NAT traversal using wrappers for miniupnpc and libnatpmp

Github action License: Apache License: MIT Stability: experimental

Installation

This repository uses submodules for miniupnp and libnatpmp, so either clone it all in one go with git clone --recurse-submodules <REPO_URL> or clone it normally and then run git submodule update --init --recursive.

Install it using Nimble:

nimble install

Dependencies

Usage

See the examples directory for some generic usage.

A real-world example, complete with periodic port mapping renewal in a separate thread, is available in nim-eth and nimbus.

By default, your code will be linked to bundled static libraries. If you want to dynamically link against your system libraries, pass the "-d:miniupnpcUseSystemLibs" and/or "-d:libnatpmpUseSystemLibs" flags to the Nim compiler.

Let's see both scenarios in action:

nimble buildBundledLibs

# statically linked against the bundled libminiupnpc.a:
nim c -r -f examples/miniupnpc_test.nim
# dynamically linked against the system libminiupnpc.so:
nim c -r -f -d:miniupnpcUseSystemLibs examples/miniupnpc_test.nim

# statically linked against the bundled libnatpmp.a:
nim c -r -f examples/natpmp_test.nim
# dynamically linked against the system libnatpmp.so:
nim c -r -f -d:libnatpmpUseSystemLibs examples/natpmp_test.nim

TODO

miniupnpc:

  • add IPv6 pinhole helper procs for the Miniupnp type

License

These wrappers are licensed and distributed under either of

or

at your option. These files may not be copied, modified, or distributed except according to those terms.