aboutsummaryrefslogblamecommitdiffstats
path: root/p2p/nat.go
blob: 9b771c3e8c12cb8fbfd1c3f4113efb755a13bed7 (plain) (tree)






















                                                                                           
package p2p

import (
    "fmt"
    "net"
)

func ParseNAT(natType string, gateway string) (nat NAT, err error) {
    switch natType {
    case "UPNP":
        nat = UPNP()
    case "PMP":
        ip := net.ParseIP(gateway)
        if ip == nil {
            return nil, fmt.Errorf("cannot resolve PMP gateway IP %s", gateway)
        }
        nat = PMP(ip)
    case "":
    default:
        return nil, fmt.Errorf("unrecognised NAT type '%s'", natType)
    }
    return
}