--- Amos Jeffries <squid3@xxxxxxxxxxxxx> wrote: > > False. ACLs are only limited by whether their info > is available or not > (requests don't have reply details etc.). > well this shines me a little bit, but what if the scenario like this: -- snips -- acl netA src 192.168.0.0/24 acl netB src 192.168.2.0/24 acl two maxconn 2 acl flashvids url_regex -i \.flv$ http_access deny netA two flashvids http_access allow netA http_access allow netB http_access deny all -- snips -- can it works at http_access or it only at delay_pool ? main goal is of course reject any excess connection ( more than 2 connection ) from netA to any url contain .flv ( .. assuming he/she downloading it ) thank's -Agung-