using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MediaBrowser.Model.Net
{
    /// 
    /// Provides a common interface across platforms for UDP sockets used by this SSDP implementation.
    /// 
    public interface IUdpSocket : IDisposable
	{
		/// 
		/// Waits for and returns the next UDP message sent to this socket (uni or multicast).
		/// 
		/// 
		Task ReceiveAsync();
        /// 
        /// Sends a UDP message to a particular end point (uni or multicast).
        /// 
        Task SendAsync(byte[] buffer, int bytes, IpEndPointInfo endPoint);
	}
}