Files
p2p-rendering-computation/p2p/upnp_test.go
Akilan 8106277956 changed
duplication detection logic and added better ouput for nodes in the IPTable
2023-01-24 22:06:21 +00:00

16 lines
230 B
Go

package p2p
import (
"fmt"
"testing"
)
// Tests if the current has UPNP support
func TestForwardUPNPPort(t *testing.T) {
err := ForwardPort(6586)
if err != nil {
fmt.Println(err)
t.Fail()
}
}