Hi,I am building netfilter queue application, that implement simple HTTP filter.
It basically will capture the packet, extract the URL, and issue MySQL lookup to see if the address is permitted or blocked.
My only fear that address lookup will block the traffic until I get the lookup reply, so I am thinking of using preforking model to fork 10-20 processes to handle the same queue.
Has any one done multi prcoess handling of the queue, is it even doable? Rayed