aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/nat/nat.go
Commit message (Collapse)AuthorAgeFilesLines
* all: update license informationFelix Lange2015-07-071-0/+16
|
* p2p/nat: tweak port mapping log messages and levelsFelix Lange2015-05-141-7/+6
| | | | | | People stil get confused about the messages. This commit changes the levels so that the only thing printed at the default level (info) is a successful mapping.
* p2p/nat: fix concurrent access to autodisc InterfaceFelix Lange2015-05-141-17/+15
| | | | | | | | | | | | Concurrent calls to Interface methods on autodisc could return a "not discovered" error if the discovery did not finish before the call. autodisc.wait expected the done channel to carry the found Interface but it was closed instead. The fix is to use sync.Once for now, which is easier to get right. And there is a test. Finally. This will have to change again when we introduce re-discovery.
* p2p/nat: less confusing error loggingFelix Lange2015-05-071-3/+5
|
* Updated loggingobscuren2015-04-071-7/+6
|
* p2p/nat: new package for port mapping stuffFelix Lange2015-02-131-0/+235
I have verified that UPnP and NAT-PMP work against an older version of the MiniUPnP daemon running on pfSense. This code is kind of hard to test automatically.