pyicap icon indicating copy to clipboard operation
pyicap copied to clipboard

A lightweight python framework for writing ICAP services

Results 13 pyicap issues
Sort by recently updated
recently updated
newest added

default 'Date' response header looks like ``` Date: b'Fri', 20 b'Oct' 2017 11:22:45 GMT ``` Weekday name and month name are not correct.

I am testing the icap server using the example [respmod_copy.py](/netom/pyicap/blob/master/examples/respmod_copy.py) and Squid 3.5.25. The only change I made was to put a call to `self.cont()` before copying the response body...

Not exactly an 'issue' but more of a question.. Is there any easy way to get this running asynchronously? The Sockerserver threading and forking mixins obviously spawn threads/processes for each...