Fritz Borgstedt wrote:
>> I suppose, but that's a cut and paste as is.
> 
> Ok, that would be the explanation why we did not successfully filter
> it out.
> I think this will do it.:
> if($l=~/250.*(CHUNKING|PIPELINING)/i) {
> # we'll filter off the chunking directive to avoid BDAT problems.

This

if($l=~/250(-|\s)(CHUNKING|PIPELINING)/i) {

or this

if($l=~/250.?(CHUNKING|PIPELINING)/i) {

Would be better than putting a wildcard match.

Kevin

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Assp-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/assp-user

Reply via email to