aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/SocketReceiveResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Net/SocketReceiveResult.cs')
-rw-r--r--MediaBrowser.Model/Net/SocketReceiveResult.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Net/SocketReceiveResult.cs b/MediaBrowser.Model/Net/SocketReceiveResult.cs
new file mode 100644
index 000000000..483e2297b
--- /dev/null
+++ b/MediaBrowser.Model/Net/SocketReceiveResult.cs
@@ -0,0 +1,25 @@
+
+namespace MediaBrowser.Model.Net
+{
+ /// <summary>
+ /// Used by the sockets wrapper to hold raw data received from a UDP socket.
+ /// </summary>
+ public sealed class SocketReceiveResult
+ {
+ /// <summary>
+ /// The buffer to place received data into.
+ /// </summary>
+ public byte[] Buffer { get; set; }
+
+ /// <summary>
+ /// The number of bytes received.
+ /// </summary>
+ public int ReceivedBytes { get; set; }
+
+ /// <summary>
+ /// The <see cref="IpEndPointInfo"/> the data was received from.
+ /// </summary>
+ public IpEndPointInfo RemoteEndPoint { get; set; }
+ public IpAddressInfo LocalIPAddress { get; set; }
+ }
+}