--[[
Called:
before check access against appropriate ACL
Database:
available
Parameters:
id station ID (temporary for newbie/server)
address station network address
station station name (undefined for servers)
this is NetBIOS station name (not replaced by DNS one)
type one of 'station | installer | newbie | server | proxy'
Returned value:
nil check address against configured ACLs
boolean true allow access, do not check agains ACLs
false reject access, do not check agains ACLs
Procedure from next set will be called if returned nothing.
]]
local args = ... -- args.id, args.address, args.station, args.type
-- no return => `nil' value
|