Jakub Sztandera
8 years ago
No known key found for this signature in database
GPG Key ID: 9A9AF56F8B3879BA
2 changed files with
7 additions and
2 deletions
-
p2p/nat/mapping.go
-
p2p/nat/nat.go
|
|
@ -106,7 +106,9 @@ func (m *mapping) ExternalAddr() (ma.Multiaddr, error) { |
|
|
|
return nil, ErrNoMapping |
|
|
|
} |
|
|
|
|
|
|
|
m.nat.natmu.Lock() |
|
|
|
ip, err := m.nat.nat.GetExternalAddress() |
|
|
|
m.nat.natmu.Unlock() |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
|
|
@ -52,6 +52,7 @@ func DiscoverNAT() *NAT { |
|
|
|
// service that will periodically renew port mappings,
|
|
|
|
// and keep an up-to-date list of all the external addresses.
|
|
|
|
type NAT struct { |
|
|
|
natmu sync.Mutex |
|
|
|
nat nat.NAT |
|
|
|
proc goprocess.Process // manages nat mappings lifecycle
|
|
|
|
|
|
|
@ -170,11 +171,13 @@ func (nat *NAT) establishMapping(m *mapping) { |
|
|
|
comment = "libp2p-" + m.comment |
|
|
|
} |
|
|
|
|
|
|
|
nat.natmu.Lock() |
|
|
|
newport, err := nat.nat.AddPortMapping(m.Protocol(), m.InternalPort(), comment, MappingDuration) |
|
|
|
if err != nil { |
|
|
|
// Some hardware does not support mappings with timeout, so try that
|
|
|
|
newport, err = nat.nat.AddPortMapping(m.Protocol(), m.InternalPort(), comment, 0) |
|
|
|
} |
|
|
|
nat.natmu.Lock() |
|
|
|
|
|
|
|
failure := func() { |
|
|
|
m.setExternalPort(0) // clear mapping
|
|
|
|