2016-11-04 08:31:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Net
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used by the sockets wrapper to hold raw data received from a UDP socket.
|
|
|
|
|
/// </summary>
|
2016-11-04 18:56:47 +00:00
|
|
|
|
public sealed class SocketReceiveResult
|
2016-11-04 08:31:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <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>
|
2016-11-04 18:56:47 +00:00
|
|
|
|
public IpEndPointInfo RemoteEndPoint { get; set; }
|
2016-12-04 21:55:02 +00:00
|
|
|
|
public IpAddressInfo LocalIPAddress { get; set; }
|
|
|
|
|
}
|
2016-11-04 08:31:05 +00:00
|
|
|
|
}
|