分类: 系统运维
2005-10-12 18:10:02
I still do not understand this requrement. squid can handle posts, can't it?
As a matter of fact, this simple change to rewrite.c in jesred makes it
recognize
post.
110c110
< if( strcmp(*method, "GET") )
---
> if( !(strcmp(*method, "GET") || strcmp(*method, "POST")))
111a112
>
Can somebody please explain to me why is there a compelling reason to require
GET method?
Thank you.