diff options
Diffstat (limited to 'src/mapport.cpp')
-rw-r--r-- | src/mapport.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mapport.cpp b/src/mapport.cpp index bb5cc47797..2df4ce45d2 100644 --- a/src/mapport.cpp +++ b/src/mapport.cpp @@ -297,9 +297,10 @@ static void MapPortProtoSetEnabled(MapPortProtoFlag proto, bool enabled) } } -void StartMapPort(bool use_upnp) +void StartMapPort(bool use_upnp, bool use_natpmp) { MapPortProtoSetEnabled(MapPortProtoFlag::UPNP, use_upnp); + MapPortProtoSetEnabled(MapPortProtoFlag::NAT_PMP, use_natpmp); DispatchMapPort(); } @@ -320,7 +321,7 @@ void StopMapPort() } #else // #if defined(USE_NATPMP) || defined(USE_UPNP) -void StartMapPort(bool use_upnp) +void StartMapPort(bool use_upnp, bool use_natpmp) { // Intentionally left blank. } |