2014-01-01 18:26:31 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2013-02-23 17:54:51 +00:00
|
|
|
using MediaBrowser.Model.Net;
|
2013-02-25 00:13:45 +00:00
|
|
|
using System.Collections.Generic;
|
2013-10-05 17:13:32 +00:00
|
|
|
using System.Net;
|
2016-11-08 18:44:23 +00:00
|
|
|
using System.Threading.Tasks;
|
2013-02-23 17:54:51 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
|
|
{
|
|
|
|
public interface INetworkManager
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a random port number that is currently available
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>System.Int32.</returns>
|
2017-03-03 04:36:20 +00:00
|
|
|
int GetRandomUnusedTcpPort();
|
|
|
|
|
|
|
|
int GetRandomUnusedUdpPort();
|
2013-02-23 17:54:51 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Returns MAC Address from first Network Card in Computer
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>[string] MAC Address</returns>
|
|
|
|
string GetMacAddress();
|
|
|
|
|
2015-12-14 14:45:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Determines whether [is in private address space] [the specified endpoint].
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="endpoint">The endpoint.</param>
|
|
|
|
/// <returns><c>true</c> if [is in private address space] [the specified endpoint]; otherwise, <c>false</c>.</returns>
|
|
|
|
bool IsInPrivateAddressSpace(string endpoint);
|
|
|
|
|
2013-02-23 17:54:51 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the network shares.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
/// <returns>IEnumerable{NetworkShare}.</returns>
|
|
|
|
IEnumerable<NetworkShare> GetNetworkShares(string path);
|
2013-09-06 20:25:03 +00:00
|
|
|
|
2013-02-23 17:54:51 +00:00
|
|
|
/// <summary>
|
2013-09-06 20:25:03 +00:00
|
|
|
/// Gets available devices within the domain
|
2013-02-23 17:54:51 +00:00
|
|
|
/// </summary>
|
2013-09-06 20:25:03 +00:00
|
|
|
/// <returns>PC's in the Domain</returns>
|
2014-01-01 18:26:31 +00:00
|
|
|
IEnumerable<FileSystemEntryInfo> GetNetworkDevices();
|
2013-10-05 17:13:32 +00:00
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Determines whether [is in local network] [the specified endpoint].
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="endpoint">The endpoint.</param>
|
|
|
|
/// <returns><c>true</c> if [is in local network] [the specified endpoint]; otherwise, <c>false</c>.</returns>
|
|
|
|
bool IsInLocalNetwork(string endpoint);
|
2015-01-18 21:44:35 +00:00
|
|
|
|
2016-12-04 21:55:02 +00:00
|
|
|
List<IpAddressInfo> GetLocalIpAddresses();
|
2016-11-08 18:44:23 +00:00
|
|
|
|
2016-11-04 18:56:47 +00:00
|
|
|
IpAddressInfo ParseIpAddress(string ipAddress);
|
|
|
|
|
|
|
|
bool TryParseIpAddress(string ipAddress, out IpAddressInfo ipAddressInfo);
|
|
|
|
|
2016-11-08 18:44:23 +00:00
|
|
|
Task<IpAddressInfo[]> GetHostAddressesAsync(string host);
|
2013-02-23 17:54:51 +00:00
|
|
|
}
|
|
|
|
}
|