Method code for $sys.host_denied()

[Turn off line numbering]
  1: arg remote;
  2: var t;
  3: 
  4: for t in (deny_hosts) {
  5:     if (match_begin(remote, t) != 0)
  6:         return 1;
  7: }
  8: return 0;

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark