- Notifications
You must be signed in to change notification settings - Fork14
A dead simple Go (golang) package to forward UDP packets like a reverse NAT (i.e. it supports multiple users).
License
NotificationsYou must be signed in to change notification settings
1lann/udp-forward
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A dead simple Go (golang) package to forward UDP packets like a reverse NAT (i.e. it supports multiple users).
package mainimport"github.com/1lann/udp-forward"funcmain() {// Forward(src, dst). It's asynchronous.forwarder,err:=forward.Forward("0.0.0.0:1000","1.2.3.4:1023",forward.DefaultTimeout)iferr!=nil {panic(err)}// Do something...// Stop the forwarderforwarder.Close()}
See theGoDoc for documentation.
There isno license.