2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2016-11-04 08:31:05 +00:00
|
|
|
using System.Net;
|
|
|
|
using System.Net.Sockets;
|
|
|
|
using MediaBrowser.Model.Net;
|
|
|
|
|
2017-08-16 06:43:41 +00:00
|
|
|
namespace Emby.Server.Implementations.Net
|
2016-11-04 08:31:05 +00:00
|
|
|
{
|
|
|
|
public class SocketFactory : ISocketFactory
|
|
|
|
{
|
2021-09-03 16:46:34 +00:00
|
|
|
/// <inheritdoc />
|
2017-03-13 04:08:23 +00:00
|
|
|
public ISocket CreateUdpBroadcastSocket(int localPort)
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
if (localPort < 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("localPort cannot be less than zero.", nameof(localPort));
|
|
|
|
}
|
2017-03-13 04:08:23 +00:00
|
|
|
|
2021-12-15 17:25:36 +00:00
|
|
|
var retVal = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
|
2017-03-13 04:08:23 +00:00
|
|
|
try
|
|
|
|
{
|
2020-06-24 16:11:02 +00:00
|
|
|
retVal.EnableBroadcast = true;
|
2017-03-13 04:08:23 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
|
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1);
|
|
|
|
|
|
|
|
return new UdpSocket(retVal, localPort, IPAddress.Any);
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
retVal?.Dispose();
|
2017-03-13 04:08:23 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
2017-08-17 20:19:02 +00:00
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public ISocket CreateSsdpUdpSocket(IPAddress localIp, int localPort)
|
2016-11-04 08:31:05 +00:00
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
if (localPort < 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("localPort cannot be less than zero.", nameof(localPort));
|
|
|
|
}
|
2016-11-04 08:31:05 +00:00
|
|
|
|
2021-12-15 17:25:36 +00:00
|
|
|
var retVal = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
|
2016-11-04 08:31:05 +00:00
|
|
|
try
|
|
|
|
{
|
2020-06-24 16:11:02 +00:00
|
|
|
retVal.EnableBroadcast = true;
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
|
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, 4);
|
2016-12-04 21:30:38 +00:00
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(IPAddress.Parse("239.255.255.250"), localIp));
|
|
|
|
return new UdpSocket(retVal, localPort, localIp);
|
2016-11-04 08:31:05 +00:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
retVal?.Dispose();
|
2016-11-04 08:31:05 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
/// <inheritdoc />
|
2022-03-08 21:20:43 +00:00
|
|
|
public ISocket CreateUdpMulticastSocket(IPAddress ipAddress, int multicastTimeToLive, int localPort)
|
2016-11-04 08:31:05 +00:00
|
|
|
{
|
2022-10-06 18:21:23 +00:00
|
|
|
ArgumentNullException.ThrowIfNull(ipAddress);
|
2019-03-13 16:51:33 +00:00
|
|
|
|
|
|
|
if (multicastTimeToLive <= 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("multicastTimeToLive cannot be zero or less.", nameof(multicastTimeToLive));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (localPort < 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("localPort cannot be less than zero.", nameof(localPort));
|
|
|
|
}
|
2016-11-04 08:31:05 +00:00
|
|
|
|
2021-12-15 17:25:36 +00:00
|
|
|
var retVal = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
|
2016-11-04 08:31:05 +00:00
|
|
|
|
2022-03-10 19:51:22 +00:00
|
|
|
retVal.ExclusiveAddressUse = false;
|
|
|
|
|
2017-08-17 20:19:02 +00:00
|
|
|
try
|
|
|
|
{
|
2017-11-10 21:22:38 +00:00
|
|
|
// seeing occasional exceptions thrown on qnap
|
|
|
|
// System.Net.Sockets.SocketException (0x80004005): Protocol not available
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
|
2017-11-10 21:22:38 +00:00
|
|
|
}
|
|
|
|
catch (SocketException)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-06-24 16:11:02 +00:00
|
|
|
retVal.EnableBroadcast = true;
|
2020-06-14 09:11:11 +00:00
|
|
|
// retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, true);
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, multicastTimeToLive);
|
2016-12-04 21:30:38 +00:00
|
|
|
|
|
|
|
var localIp = IPAddress.Any;
|
|
|
|
|
2022-03-08 21:20:43 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(ipAddress, localIp));
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.MulticastLoopback = true;
|
2020-06-24 16:23:16 +00:00
|
|
|
|
2016-12-04 21:30:38 +00:00
|
|
|
return new UdpSocket(retVal, localPort, localIp);
|
2016-11-04 08:31:05 +00:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
retVal?.Dispose();
|
2016-11-04 08:31:05 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|