// /** // * File: AuthorizationMask.cs // * Author: haraldwolff // * // * This file and it's content is copyrighted by the Author and / or copyright holder. // * Any use wihtout proper permission is illegal and may lead to legal actions. // * // * // **/ using System; namespace ln.http { public static class AuthorizationMask { public static readonly long A_ACCESS = (1l << 0); public static readonly long A_READ = (1l << 0); public static readonly long A_WRITE = (1l << 0); public static readonly long A_EXEC = (1l << 0); public static readonly long A_SUPER = (-1); } }