using System;
using System.Diagnostics;
using System.IO;
using System.Reflection;
namespace MediaBrowser.ServerApplication.Native
{
///
/// Class Authorization
///
public static class ServerAuthorization
{
///
/// Authorizes the server.
///
/// The HTTP server port.
/// The HTTP server URL prefix.
/// The web socket port.
/// The UDP port.
/// The temp directory.
public static void AuthorizeServer(int httpServerPort, string httpServerUrlPrefix, int webSocketPort, int udpPort, string tempDirectory)
{
}
}
}