aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-02-06 01:08:55 -0500
committerGitHub <noreply@github.com>2017-02-06 01:08:55 -0500
commit2ceaa50ea737e88aca74c4af16a5c969e07d5f5a (patch)
treef74ffd55b84f50b36f7f99b75dc10c5c27bc5b91 /MediaBrowser.Model/Net
parent84d2a5303b2eee311628876851335b7b926aa2ea (diff)
parent6f1a300bdef907415160728670726735067efc7a (diff)
Merge pull request #2445 from MediaBrowser/beta
Beta
Diffstat (limited to 'MediaBrowser.Model/Net')
-rw-r--r--MediaBrowser.Model/Net/IUdpSocket.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Net/IUdpSocket.cs b/MediaBrowser.Model/Net/IUdpSocket.cs
index c70510726..76793f4a6 100644
--- a/MediaBrowser.Model/Net/IUdpSocket.cs
+++ b/MediaBrowser.Model/Net/IUdpSocket.cs
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
+using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Model.Net
@@ -22,6 +23,6 @@ namespace MediaBrowser.Model.Net
/// <summary>
/// Sends a UDP message to a particular end point (uni or multicast).
/// </summary>
- Task SendAsync(byte[] buffer, int bytes, IpEndPointInfo endPoint);
+ Task SendAsync(byte[] buffer, int bytes, IpEndPointInfo endPoint, CancellationToken cancellationToken);
}
} \ No newline at end of file