diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-03 02:22:39 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-03 02:22:39 +0800 |
commit | 3f503ffc7f85287fc3716afb704f90a1a4e7b21b (patch) | |
tree | 0428a976a08d04c8791ce4e2764c4bb39ef5cdf7 /nat.go | |
parent | ae0d4eb7aa644b4c295d7a7cd28c38e92777a52f (diff) | |
download | dexon-3f503ffc7f85287fc3716afb704f90a1a4e7b21b.tar.gz dexon-3f503ffc7f85287fc3716afb704f90a1a4e7b21b.tar.zst dexon-3f503ffc7f85287fc3716afb704f90a1a4e7b21b.zip |
Implemented support for UPnP
Diffstat (limited to 'nat.go')
-rw-r--r-- | nat.go | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +package eth + +import ( + "net" +) + +// protocol is either "udp" or "tcp" +type NAT interface { + GetExternalAddress() (addr net.IP, err error) + AddPortMapping(protocol string, externalPort, internalPort int, description string, timeout int) (mappedExternalPort int, err error) + DeletePortMapping(protocol string, externalPort, internalPort int) (err error) +} |