using System;
namespace MediaBrowser.Common.Net;
/// 
/// Result of .
/// 
public enum RemoteAccessPolicyResult
{
    /// 
    /// The connection should be allowed.
    /// 
    Allow,
    /// 
    /// The connection should be rejected since it is not from a local IP and remote access is disabled.
    /// 
    RejectDueToRemoteAccessDisabled,
    /// 
    /// The connection should be rejected since it is from a blocklisted IP.
    /// 
    RejectDueToIPBlocklist,
    /// 
    /// The connection should be rejected since it is from a remote IP that is not in the allowlist.
    /// 
    RejectDueToNotAllowlistedRemoteIP,
}