... 'k, this makes more sense ... but, is there no way to 'trigger' it to debug? As I said, I ran http_load at it, oh, wait, I wouldn't see the problem with...
Marc G. Fournier
scrappy@...
Mar 1, 2004 3:43 pm
47718
Hi, Question: Can we use the environment variables setup by mod_ssl in the RewriteCond directive ? I believe there's some inconsistency there - the SSL...
Mathihalli, Madhusudan
madhum@...
Mar 1, 2004 6:39 pm
47719
BTW, I forgot to mention that RewriteCond with SSL variables work if (1) ssl_hook_Translate is APR_HOOK_FIRST and (2) ssl_hook_Fixup logic is transferred to...
Mathihalli, Madhusudan
madhum@...
Mar 1, 2004 6:57 pm
47720
in 2.0 - Connection output filters don't recieve the EOS bucket when the request method is HEAD. This breaks the idiom of flushing any stored data when the eos...
Stas Bekman
stas@...
Mar 2, 2004 4:07 am
47721
... Answering my own question, the solution is to use conn->keepalives counter which is incremented at the end of each request. By storing the previous count ...
Stas Bekman
stas@...
Mar 2, 2004 4:19 am
47722
It'd be very helpful if Apache provided methods to query various in and out stream processing events to make filters more efficient. The events I can think at...
Stas Bekman
stas@...
Mar 2, 2004 4:19 am
47723
... no other comments atm, but this isn't really ideal. The connection does not know anything about concepts like "HTTP". (or should however). Perhaps we...
... I believe that is because of broken handlers, which don't send anything if they detect HEAD. In 2.0 a handler should not care about GET or HEAD, but send ...
... There is no way this could be solved in 2.0, right? ... Yup, I had that idea too. That works for me as long as you can access it via the connection filter...
Stas Bekman
stas@...
Mar 2, 2004 5:49 am
47726
... I see that with a non-broken handler which sends the response body unconditionally. The output I've posted in my original email is all that's seen by an...
Stas Bekman
stas@...
Mar 2, 2004 5:55 am
47727
... I'm not sure that this is helpful because input filters aren't supposed to know about the input headers. The headers are read before the HTTP input ...
Justin Erenkrantz
justin@...
Mar 2, 2004 6:08 am
47728
... Sorry, but I think something is off here. Why should a connection-level filter know about HTTP requests? -- justin...
Justin Erenkrantz
justin@...
Mar 2, 2004 6:08 am
47729
... Why is ap_finalize_request_protocol not being called? That is the code that should be ensuring that EOS is passed down even if the handler is 'broken.' --...
Justin Erenkrantz
justin@...
Mar 2, 2004 6:15 am
47730
--On Monday, March 1, 2004 11:37 AM -0400 "Marc G. Fournier" <scrappy@...> ... See below, I think you only have one worker process running. You need ...
Justin Erenkrantz
justin@...
Mar 2, 2004 6:31 am
47731
... I'm talking about connection filters which process HTTP requests, not HTTP body filters. HTTP body filters don't need this knowledge since they never see ...
Stas Bekman
stas@...
Mar 2, 2004 6:58 am
47732
... Because that's the only way to write a filter that processes HTTP headers only. See: http://search.cpan.org/dist/Apache-Filter-HTTPHeadersFixup/ There are...
Stas Bekman
stas@...
Mar 2, 2004 7:14 am
47733
... I've stepped through with gdb, ap_finalize_request_protocol is called and EOS is sent, but it gets lost and doesn't reach the connection output filter. ...
Stas Bekman
stas@...
Mar 2, 2004 7:20 am
47734
... Hmm. FTPYPE_PROTOCOL (sp?) is for such a purpose. If it's no applicable, we'd need to fix *that*. I'm certain, a mod_pop3 wouldn't like HTTP filters on...
There must be some simple explanation, but this is very annoying as 'cvs up' in httpd-2.0 keeps on colliding at these files: M modules/ssl/ssl_expr_parse.c M...
Stas Bekman
stas@...
Mar 2, 2004 7:54 am
47736
... AP_FTYPE_PROTOCOL. But what difference does it make as long as it sees the HTTP headers? ... I fail to see what it has to do with mod_pop3. If I run a...
Stas Bekman
stas@...
Mar 2, 2004 7:57 am
47737
Hi all, Am looking out for a reference of all the Apache API's Revision changes. I.e Apache API v 1.3 & v 2.0 revision changes in the API's What Could be the...
Benedict DSilva
benedict.dsilva@...
Mar 2, 2004 8:51 am
47738
... This should only happen very occasionally now in HEAD when one of the ssl_expr sources is modified (as happened recently) since buildconf will touch the...
Joe Orton
jorton@...
Mar 2, 2004 9:03 am
47739
... That's what I was doing, but I was reluctant to put that in the build script, because you never remember those delete commands. But as you say they are ...
Stas Bekman
stas@...
Mar 2, 2004 9:15 am
47740
... http://httpd.apache.org/docs-2.0/developer/ should be the first place to look. Especially linked from there: <http://docx.webperf.org/>. nd...
... Not like in 1.3; in 2.0 you can use %{LA-U:ENV:...} to fetch the SSL variables via a subrequest; a better solution is to extend mod_rewrite to allow...
Joe Orton
jorton@...
Mar 2, 2004 2:00 pm
47742
Thanks for your input!! Actually am looking out for a site similar to http://httpd.apache.org/dev/apidoc/index.html which would give me all the API reference...
Benedict.DSilva@...
Mar 2, 2004 3:39 pm
47743
... No complaints? Suggestions? I'll commit tonight then? -Thom...
Thom May
thom@...
Mar 2, 2004 3:43 pm
47744
... Note that *BSD is looking at a 4.10 RSN, and I'm trying to fight for trying to get this fixed, if its possible, which is why I'm trying to come up with...
Marc G. Fournier
scrappy@...
Mar 2, 2004 3:54 pm
47745
--On Tuesday, March 2, 2004 11:47 AM -0400 "Marc G. Fournier" ... You'd have to look at the archives for dev@httpd. I would have been the one posting it along...
Justin Erenkrantz
justin@...
Mar 2, 2004 5:13 pm
47746
... Because AP_FTYPE_PROTOCOL is request-level when you are using HTTP. But, you should not be changing HTTP headers in a filter. You should be altering them...