jellyfin/MediaBrowser.Model/Net/ISocket.cs

28 lines
915 B
C#
Raw Normal View History

2016-11-08 19:44:23 +01:00
using System;
2017-03-02 21:50:09 +01:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
2016-11-08 19:44:23 +01:00
namespace MediaBrowser.Model.Net
{
2017-03-02 21:50:09 +01:00
/// <summary>
/// Provides a common interface across platforms for UDP sockets used by this SSDP implementation.
/// </summary>
2016-11-08 19:44:23 +01:00
public interface ISocket : IDisposable
{
2017-03-02 21:50:09 +01:00
IpAddressInfo LocalIPAddress { get; }
2016-11-08 19:44:23 +01:00
2017-03-02 21:50:09 +01:00
/// <summary>
/// Waits for and returns the next UDP message sent to this socket (uni or multicast).
/// </summary>
/// <returns></returns>
Task<SocketReceiveResult> ReceiveAsync(CancellationToken cancellationToken);
2016-12-07 21:02:34 +01:00
2017-03-02 21:50:09 +01:00
/// <summary>
/// Sends a UDP message to a particular end point (uni or multicast).
/// </summary>
Task SendAsync(byte[] buffer, int bytes, IpEndPointInfo endPoint, CancellationToken cancellationToken);
2016-12-07 21:02:34 +01:00
}
2017-03-02 21:50:09 +01:00
}