aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/natpmp.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-27 18:50:50 +0800
committerobscuren <geffobscura@gmail.com>2014-10-27 18:50:50 +0800
commit797b93c98cdd8183fca58f0c1c554b0d5af26d41 (patch)
tree10de24dc414b05cdb2a57dfa37db7e3f7a7c5605 /p2p/natpmp.go
parentb095bd32371f02d204a4d0fbde75dc58baa7430d (diff)
parentf62b6742f2189f45463c362897e9f49a11d811a2 (diff)
downloadgo-tangerine-797b93c98cdd8183fca58f0c1c554b0d5af26d41.tar
go-tangerine-797b93c98cdd8183fca58f0c1c554b0d5af26d41.tar.gz
go-tangerine-797b93c98cdd8183fca58f0c1c554b0d5af26d41.tar.bz2
go-tangerine-797b93c98cdd8183fca58f0c1c554b0d5af26d41.tar.lz
go-tangerine-797b93c98cdd8183fca58f0c1c554b0d5af26d41.tar.xz
go-tangerine-797b93c98cdd8183fca58f0c1c554b0d5af26d41.tar.zst
go-tangerine-797b93c98cdd8183fca58f0c1c554b0d5af26d41.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'p2p/natpmp.go')
-rw-r--r--p2p/natpmp.go55
1 files changed, 55 insertions, 0 deletions
diff --git a/p2p/natpmp.go b/p2p/natpmp.go
new file mode 100644
index 000000000..ff966d070
--- /dev/null
+++ b/p2p/natpmp.go
@@ -0,0 +1,55 @@
+package p2p
+
+import (
+ "fmt"
+ "net"
+
+ natpmp "github.com/jackpal/go-nat-pmp"
+)
+
+// Adapt the NAT-PMP protocol to the NAT interface
+
+// TODO:
+// + Register for changes to the external address.
+// + Re-register port mapping when router reboots.
+// + A mechanism for keeping a port mapping registered.
+
+type natPMPClient struct {
+ client *natpmp.Client
+}
+
+func NewNatPMP(gateway net.IP) (nat NAT) {
+ return &natPMPClient{natpmp.NewClient(gateway)}
+}
+
+func (n *natPMPClient) GetExternalAddress() (addr net.IP, err error) {
+ response, err := n.client.GetExternalAddress()
+ if err != nil {
+ return
+ }
+ ip := response.ExternalIPAddress
+ addr = net.IPv4(ip[0], ip[1], ip[2], ip[3])
+ return
+}
+
+func (n *natPMPClient) AddPortMapping(protocol string, externalPort, internalPort int,
+ description string, timeout int) (mappedExternalPort int, err error) {
+ if timeout <= 0 {
+ err = fmt.Errorf("timeout must not be <= 0")
+ return
+ }
+ // Note order of port arguments is switched between our AddPortMapping and the client's AddPortMapping.
+ response, err := n.client.AddPortMapping(protocol, internalPort, externalPort, timeout)
+ if err != nil {
+ return
+ }
+ mappedExternalPort = int(response.MappedExternalPort)
+ return
+}
+
+func (n *natPMPClient) DeletePortMapping(protocol string, externalPort, internalPort int) (err error) {
+ // To destroy a mapping, send an add-port with
+ // an internalPort of the internal port to destroy, an external port of zero and a time of zero.
+ _, err = n.client.AddPortMapping(protocol, internalPort, 0, 0)
+ return
+}