Пример #1
0
        // проверить ип
        public bool check_ip(database _database_, ip_address address)
        {
            bool enable_access = false;
            bool boolean       = check_ip_registration(_database_, address);

            if (boolean == true)
            {
                enable_access = true;
            }
            else
            {
                enable_access = false;
            }
            return(enable_access);
        }
Пример #2
0
        private bool check_ip_registration(database _database_, ip_address address)
        {
            bool boolean = false;

            char[] _ip_address_false = new char[ip.Length];
            char[] _ip_address_true  = new char[ip.Length - 2];
            _ip_address_false = ip.ToCharArray();
            string ip_true;

            if (_ip_address_false[0] == ':')
            {
                for (int i = 0; i < ip.Length - 2; i++)
                {
                    _ip_address_true[i] = _ip_address_false[i + 2];
                }
                ip_true = new string(_ip_address_true);
            }
            else
            {
                ip_true = ip;
            }
            List <string> get_address = _database_.get_from_datebase("permitted_ip", "access_connect", "where permitted_ip='" + ip_true + "'");

            if (address == null)
            {
                boolean = false;
            }
            else
            if (get_address.LongCount() > 0)
            {
                boolean = true;
            }
            else
            {
                boolean = false;
            }
            return(boolean);
        }