Evan Miller
Evan Miller
The subrequest context is supposed to be set here: https://github.com/evanmiller/mod_zip/blob/808fb55e7235a201ea862e02dab612b87787d5a4/ngx_http_zip_module.c#L570-L572 I wonder if that's not happening for some reason.
Yes, adding `Last-Modified` should allow clients to resume failed downloads.
@pgaertig, thanks for the detective work. It would be nice if mod_zip supported HEAD requests out of the box. This is not something I plan to work on but patches...
You can see the parser logic here: https://github.com/evanmiller/mod_zip/blob/master/ngx_http_zip_parsers.rl It's possible that the grammar is ambiguous, and Ragel blowing up with internal state (i.e. for backtracking). You might try recompiling the...
Hi, it looks like you've answered your own question! mod_zip does not have very intelligent retry logic, so remote upstreams should be used with care. I will rename the issue...
Note to self: I believe the `ngx_http_post_subrequest_t` callback will come in handy here. We want some logic like: * If a subrequest fails, try again at least once * If...
It might be worth asking the mailing list about this; it could be by design that the file descriptors remain open throughout the request.
I have contributed the above-mentioned patch to MacPorts. It can be found here: https://github.com/macports/macports-ports/blob/master/print/brlaser/files/patch-cups-1.1.diff
I would encourage anyone with duplexing trouble to try out the code I've submitted in #124 – which alters the way that the driver requests duplexing. I've tested with an...
@tbtommyb I've been rummaging around the duplexing code and have a possible explanation for you. It looks like duplexing is enabled here: https://github.com/pdewacht/brlaser/blob/9d7ddda8383bfc4d205b5e1b49de2b8bcd9137f1/src/job.cc#L81-L83 But the setting might not be properly...