aboutsummaryrefslogtreecommitdiff
path: root/Mono.Nat/INatDevice.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Nat/INatDevice.cs')
-rw-r--r--Mono.Nat/INatDevice.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mono.Nat/INatDevice.cs b/Mono.Nat/INatDevice.cs
index c9f27055b..44ba5223b 100644
--- a/Mono.Nat/INatDevice.cs
+++ b/Mono.Nat/INatDevice.cs
@@ -30,12 +30,13 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
+using System.Threading.Tasks;
namespace Mono.Nat
{
public interface INatDevice
{
- void CreatePortMap (Mapping mapping);
+ Task CreatePortMap (Mapping mapping);
void DeletePortMap (Mapping mapping);
IPAddress LocalAddress { get; }