[PATCH] ServerSignature privacy - option 1

2002-10-29 Thread Francis Daly
Hi there, About a year ago, there was a discussion about the fact that "ServerTokens" could be used to limit the detailed information sent about the server on every request, while "ServerSignature" only showed the full product version (or nothing at all). (See, for example, http://marc.theaimsgro

[PATCH] ServerSignature privacy - option 2

2002-10-29 Thread Francis Daly
Hi there, As promised, the "ServerSignature should track ServerTokens" patch alternative 2: add directive to change current behaviour to allow what I want, while retaining current behaviour for everyone else. Built against the released 2.0.43 code, my (limited) testing doesn't show a significant

low level design

2002-10-29 Thread Alistair Young
Hi all, I've just joined the list so please forgive me if this is the wrong area for this. I would like to find out if it's possible to call ap_should_client_block / ap_get_client_block more than once between modules. I'm working on mod_sw (semantic web) and need to access form data in the body of

Re: low level design

2002-10-29 Thread Jeff Trawick
"Alistair Young" <[EMAIL PROTECTED]> writes: > Hi all, > I've just joined the list so please forgive me if this is the wrong area > for this. I would like to find out if it's possible to call > ap_should_client_block / ap_get_client_block more than once between > modules. I'm working on mod_sw (se

RE: Compiling Apache modules for windows

2002-10-29 Thread Igor Leturia
Hi Günter, A couple of weeks ago I asked in the Apache developpers' list if anyone could compile a third party module (mod_replace) for Windows, and you were very kind and did it. These two weeks I've been trying the module, which sometimes works and sometimes doesn't. After much investigating, I

[PATCH] checking for failures encountered by core_output_filter

2002-10-29 Thread Jeff Trawick
As one part of a fix to get scripts terminated if the connection drops, the change below was required in the content length filter (checking f->c->aborted). What worries me is that this check probably needs to be added elsewhere as well. core_output_filter was previously changed to return APR_SUC

Semaphore Arrays

2002-10-29 Thread Maurizio Marini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Redhat 7.3, apache 1.3.23-14 and the rest by distribution we are noting in a production env. that after stopped, apache deny to start again for shortness of Semaphore Arrays the default by distro is 128 arrays for a total of 32k semaphores t

apachectl/ulimit translation issue

2002-10-29 Thread Jeff Trawick
apachectl tries to set soft limit for number of descriptors to the hard limit. The output of ulimit -H -n with my AIX box yields English text "unlimited", which is a parameter that can be passed to ulimit -S -n. In a French locale, AIX translates "unlimited" on output to Illimite' # ulimit -H -n

UDP Support

2002-10-29 Thread Aymerick Jéhanne
I want to add UDP Support to Apache, and i can see that I'm not the only one (there were already discussions about it in August and September on this list). Ok, but before starting to code, I want be sure to understand the "Protocol Modules" logic. For example, if I want HTTP, Echo and POP3, here

[PATCH] use r->request_now in lieu of calling apr_time_now()

2002-10-29 Thread Bill Stoddard
Anyone see any problems with using r->request_time in liew of calling apr_time_now() in age calculations? I am also not inclined to bump the MMN major for this patch as the functions are all in experimental. Bill Index: modules/experimental/cache_util.c ===

Re: [PATCH] use r->request_now in lieu of calling apr_time_now()

2002-10-29 Thread Brian Pane
+1 on the change (and I agree that it shouldn't incur an MMN change because it's in experimental). Brian On Tue, 2002-10-29 at 11:41, Bill Stoddard wrote: > Anyone see any problems with using r->request_time in liew of calling > apr_time_now() in age calculations? I am also not inclined to bump t

request_rec->cookies

2002-10-29 Thread Juan Rivera
Is there any easy way to get a list of the cookies (name/value pairs) from a client's request? Best regards, Juan C. Rivera Citrix Systems, Inc.

Re: request_rec->cookies

2002-10-29 Thread Maurizio Marini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 29 October 2002 09:56 pm, Juan Rivera wrote: >Is there any easy way to get a list of the cookies (name/value pairs) from > a client's request? i used this function to read next elements of a 'table': API_EXPORT(const char *)ap_table_get

Proxy Pass Cookie bug

2002-10-29 Thread Maurizio Marini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 For who interested: if ((datestr = ap_table_get(resp_hdrs, "Set-Cookie")) != NULL) ap_table_set(resp_hdrs, "Set-Cookie", proxy_cookie_reverse_map(r, datestr)); it cannot use a string var here; in fact cookies are zero delimited; if the