Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muink/openwrt-go-stun
A go implementation of the STUN client (RFC 3489 and RFC 5389)
https://github.com/muink/openwrt-go-stun
fantastic-package go-stun openwrt openwrt-package
Last synced: 9 days ago
JSON representation
A go implementation of the STUN client (RFC 3489 and RFC 5389)
- Host: GitHub
- URL: https://github.com/muink/openwrt-go-stun
- Owner: muink
- License: apache-2.0
- Created: 2023-01-13T11:05:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-05T07:41:00.000Z (7 months ago)
- Last Synced: 2024-05-05T08:26:01.160Z (7 months ago)
- Topics: fantastic-package, go-stun, openwrt, openwrt-package
- Language: Makefile
- Homepage:
- Size: 17.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
openwrt-go-stun
===============A go implementation of the STUN client (RFC 3489 and RFC 5389)
## Introduction
This project is the software package of [go-stun][] running on OpenWrt
Recommended to use it with `luci-app-commands`## Releases
You can find the prebuilt-ipks [here](https://fantastic-packages.github.io/packages/)## Build
```shell
# Take the x86_64 platform as an example
tar xjf openwrt-sdk-21.02.3-x86-64_gcc-8.4.0_musl.Linux-x86_64.tar.xz
# Go to the SDK root dir
cd OpenWrt-sdk-*-x86_64_*
# First run to generate a .config file
make menuconfig
./scripts/feeds update -a
./scripts/feeds install -a
# Get Makefile
git clone --depth 1 --branch master --single-branch --no-checkout https://github.com/muink/openwrt-go-stun.git package/go-stun
pushd package/go-stun
umask 022
git checkout
popd
# Select the package Network -> go-stun
make menuconfig
# Start compiling
make package/go-stun/compile V=99
```## License
This project is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)[go-stun]: https://github.com/ccding/go-stun