Re: svn commit: r122551 - /httpd/httpd/trunk/CHANGES /httpd/httpd/trunk/modules/proxy/mod_proxy.c

2004-12-17 Thread Mladen Turk
Jim Jagielski wrote: Mladen Turk wrote: I plan on adding additional info to it, to better define how to use it. The docs are kinda skimpy right now. Cool! I also work on the howto or example section for using mod_proxy from simple setup to the work in the clustered environment. I will also have

Re: svn commit: r122551 - /httpd/httpd/trunk/CHANGES /httpd/httpd/trunk/modules/proxy/mod_proxy.c /httpd/httpd/trunk/modules/proxy/proxy_balancer.c

2004-12-16 Thread Mladen Turk
[EMAIL PROTECTED] wrote: Author: jim URL: http://svn.apache.org/viewcvs?view=revrev=122551 Log: simplify the BalancerMember load factor weighting. Instead of being percentages (and adjusting when the number don't add up), loadfactors/lbfactors are now normalized values, so values like: Hi Jim,

Re: svn commit: r122551 - /httpd/httpd/trunk/CHANGES /httpd/httpd/trunk/modules/proxy/mod_proxy.c

2004-12-16 Thread Mladen Turk
Jim Jagielski wrote: Why did you remove the algorithm comment from the source code? The algorithm still behaves as before, only the setup is normalized. I didn't remove it, just simplified the comment as well... Look for the '+' lines :) OK, but just don't do the same with docs proxy_balancer.xml

Re: Simplified lbfactor setup for proxy_balancer

2004-12-15 Thread Mladen Turk
Jim Jagielski wrote: Please note that the patch doesn't include the error checking for lbfactor being 0, which is trivial... I always wanted to get rid of that recalc factors algo. It's leftover from old balancer algorithm, so +1 from me. Mladen.

Re: 2.1.2-alpha http/ftp proxy/cache problems

2004-12-14 Thread Mladen Turk
Andreas Steinmetz wrote: Both problems described below relate to the http and the ftp proxy with cache enabled. URLs and proxy setup are given at the end of this mail. Hi, As Justin said it has nothing to do with the cache. The problem is with the single forward/reverse proxy worker that is not

Re: 2.1 CVS: ftp proxy probably broken

2004-12-08 Thread Mladen Turk
Jeff Trawick wrote: On Thu, 14 Oct 2004 15:52:05 +0200, Andreas Steinmetz [EMAIL PROTECTED] wrote: Did anybody notice that the ftp proxy seems to be broken? I can't get it to work either. There also seems to be a slight regression in ProxyPass support for ftp. The following directive is accepted

Re: 2.1 CVS: ftp proxy probably broken

2004-12-08 Thread Mladen Turk
Andreas Steinmetz wrote: Did anybody notice that the ftp proxy seems to be broken? Any request returns 503 and the reason seems to be that ap_proxy_connect_backend is called with conn-addr=NULL from ap_proxy_ftp_handler. Fix is trivial. I'll commit the patch as soon as SVN gets up :). Mladen.

Re: mod_headers -- RequestHeader passing common vars.

2004-12-06 Thread Mladen Turk
André Malo wrote: A simple patch that calls ap_add_common_vars(r) before processing the variable from r-subprocess_env will do more then enough. That's a problem. It's way more than enough. ap_add_common_vars takes time at every call of %{...}e. Perhaps one should add a new core option or

mod_headers -- RequestHeader passing common vars.

2004-12-04 Thread Mladen Turk
Hi all, Is there any reason (RFC or security) that prevents using common vars within 'RequestHeader XX %{ENV_VAR}e'. Those can now be only set by SetEnv, SetEnvIf and PassEnv. A simple patch that calls ap_add_common_vars(r) before processing the variable from r-subprocess_env will do more then

Re: svn commit: r106988 - /httpd/httpd/trunk/include/ap_listen.h /httpd/httpd/trunk/server/listen.c

2004-11-30 Thread Mladen Turk
[EMAIL PROTECTED] wrote: Log: Declare the ap_set_listen* functions with AP_DECLARE_NONSTD for Win32 support. Yes, that's it. Thanks, Mladen.

Re: svn commit: r106843 - /httpd/httpd/trunk/include/ap_listen.h /httpd/httpd/trunk/server/listen.c

2004-11-29 Thread Mladen Turk
[EMAIL PROTECTED] wrote: Log: Properly export ap_listen_* functions. * server/listen.c: Add AP_DECLARE as appropriate. * include/ap_listen.h: Add AP_DECLARE as appropriate. Hi, Your patch breaks win32 build. The reason is that the AP_DECLARE is __stdcall while cmd_table is __cdecl. Can you revert

Re: svn commit: r106899 - /httpd/httpd/trunk/srclib/pcre/pcreposix.h

2004-11-29 Thread Mladen Turk
André Malo wrote: * [EMAIL PROTECTED] wrote: Author: mturk Date: Mon Nov 29 02:09:15 2004 New Revision: 106899 URL: http://svn.apache.org/viewcvs?view=revrev=106899 Log: Add missing pcreposix.h from vendor/pcre/5.0. *argh*. Revert this. It isn't missing. If you had followed the recent commits,

Re: svn commit: r106899 - /httpd/httpd/trunk/srclib/pcre/pcreposix.h

2004-11-29 Thread Mladen Turk
André Malo wrote: * Mladen Turk [EMAIL PROTECTED] wrote: Well I'll remove that, but something like that (movig files that were for years in one location to other) should be put in the dev list or at least to changelog thought. It *was* put in the 'PCRE in 2.1/2.2' thread. Perhaps it was, but I

Re: svn commit: r106843 - /httpd/httpd/trunk/include/ap_listen.h /httpd/httpd/trunk/server/listen.c

2004-11-29 Thread Mladen Turk
Justin Erenkrantz wrote: --On Monday, November 29, 2004 10:48 AM +0100 Mladen Turk [EMAIL PROTECTED] wrote: Your patch breaks win32 build. The reason is that the AP_DECLARE is __stdcall while cmd_table is __cdecl. Huh? I don't know Win32 at all, so this makes no sense. __stdcall: The callee

Re: svn commit: r106843 - /httpd/httpd/trunk/include/ap_listen.h /httpd/httpd/trunk/server/listen.c

2004-11-29 Thread Mladen Turk
Justin Erenkrantz wrote: On Mon, Nov 29, 2004 at 06:30:35PM +0100, Mladen Turk wrote: __stdcall: The callee cleans the stack __cdecl (default): The stack is cleaned up by the caller So you can not mix that two. The cmd_table uses __cdecl functions and you are providing __stdcall function, so

Re: svn commit: r106843 - /httpd/httpd/trunk/include/ap_listen.h /httpd/httpd/trunk/server/listen.c

2004-11-29 Thread Mladen Turk
William A. Rowe, Jr. wrote: The reason this popped up is that the function was not previously exported, therefore it was in the c convention as a local function. In the future, Mladen, please don't assume unix coders know this distinction and please go ahead, fix things up as necessary. Have no

Re: mod_proxy debug warnings

2004-11-28 Thread Mladen Turk
Stas Bekman wrote: I know those are debug level warnings, but are those really needed? I get 34 of these identical lines every time the module is initialized: [Sat Nov 27 15:37:42 2004] [debug] proxy_util.c(1444): proxy: initialized worker 0 for (rabbit.stason.org:8529) min=0 max=2 smax=2 why so

Re: mod_proxy debug warnings

2004-11-28 Thread Mladen Turk
Stas Bekman wrote: So it's not possible that the number of logs relates to the number of child_init calls. Though I do have 32 vhosts, which matches much better the number of debug lines (33). So does it print one per vhost? Yes, they are duplicated for each virtual host and that is wrong

SVN broken?

2004-11-26 Thread Mladen Turk
Trying to: http://svn.apache.org/ or... https://svn.apache.org/ could not connect to server (http://svn.apache.org) Just me or thanksgiving :) Regards, Mladen.

Re: SVN broken?

2004-11-26 Thread Mladen Turk
Cliff Woolley wrote: On Fri, 26 Nov 2004, Mladen Turk wrote: Trying to: http://svn.apache.org/ or... https://svn.apache.org/ could not connect to server (http://svn.apache.org) Just me or thanksgiving :) I'm working on it. PS, Mladen: in the future, send things like this to infrastructure

Syncing access to socreboard

2004-11-19 Thread Mladen Turk
Hi, Does anyone has idea how to protect the access to the scoreboard? Does apache 2.1 has some global lock that can be used for that (with public api perhaps)? Regards, Mladen.

Re: cvs commit: httpd-2.0/modules/proxy proxy_connect.c

2004-11-11 Thread Mladen Turk
[EMAIL PROTECTED] wrote: jorton 2004/11/11 03:37:25 * modules/proxy/proxy_connect.c (proxy_connect_handler, proxy_connect_canon): Drop ap_ prefix, make static, remove forward-declarations. Can something like be used inside proxy_ftp and proxy_http too? Regards, Mladen.

site-tools CVS locked?

2004-11-08 Thread Mladen Turk
Hi, I'm trying to anoncvs site-tools, but it seems they are locked. Here it is: cvs server: Updating site-tools cvs server: failed to create lock directory for `/home/cvs/site-tools' (/home/cvs/site-tools/#cvs.lock): Permission denied cvs server: failed to obtain dir lock in repository

Re: Mod_Proxy Counting Bug(s)?

2004-10-18 Thread Mladen Turk
NormW wrote: Refreshing the /server-status page showed: Acc 3, Wr 0, Rd 0. I assume the 'Acc' count is correct but 'Wr' and 'Rd' are (most likely) incorrect. This was done using a CVS build of 2.1 httpd on NetWare. This is work in progress. I'm having second thoughts on the counting rd/wr

Re: Mod_Proxy Counting Bug(s)?

2004-10-18 Thread Mladen Turk
NormW wrote: Well It's not a bug since It's not finished :). Not finished? Not a bug then, as you suggest! I meant: the received/transferred counting logic is not finished, and I doubt if it's worth to be finished after all. At least as far as I can see with proxy_ajp, this is about its only

Re: cvs commit: httpd-2.0/support/win32 ApacheMonitor.c

2004-10-06 Thread Mladen Turk
[EMAIL PROTECTED] wrote: ake 2004/10/06 06:33:29 Modified:modules/arch/win32 mod_win32.c server/mpm/winnt service.c support/win32 ApacheMonitor.c Log: WIN64: fix some windows specific 64bit warnings -if (!WriteConsole(hConErr, msg, strlen(msg),

Re: cvs commit: httpd-2.0/support/win32 ApacheMonitor.c

2004-10-06 Thread Mladen Turk
Jeff Trawick wrote: Please do not do that any more. I'm sorry but I'm vetoing your patches. Use the official API, it is well documented. strlen() returns size_t, TextOut() requires int; somewhere a cast is required, no? what is a better solution? That's true, but the strlen can never be int

Re: cvs commit: httpd-2.0/support/win32 ApacheMonitor.c

2004-10-06 Thread Mladen Turk
Allan Edwards wrote: Mladen Turk wrote: That's true, but the strlen can never be int (negative). The API is DWORD meaning 32 bit unsigned integer, so either cast to API or no cast. You are correct that for WriteConsole the cast should have been DWORD - I will fix that, thanks Look, I'm sorry

Re: cvs commit: httpd-2.0/modules/proxy mod_proxy.c proxy_balancer.c proxy_util.c mod_proxy.h

2004-09-28 Thread Mladen Turk
[EMAIL PROTECTED] wrote: mturk 2004/09/28 09:35:30 Modified:modules/proxy mod_proxy.c proxy_balancer.c proxy_util.c mod_proxy.h Revision ChangesPath 1.158 +1843 -1846httpd-2.0/modules/proxy/proxy_util.c 1.138 +614 -605

Re: cvs commit: httpd-2.0/modules/proxy proxy_balancer.c

2004-09-26 Thread Mladen Turk
Joe Orton wrote: The SSL proxy tests in the test suite have broken again from one of these changes. I get core dumps like below. Any ideas? #0 0x0807fc07 in ap_proxy_acquire_connection ( proxy_function=0x8477540 \buG\b(pE\b\220\211;\b, conn=0x84575f6, worker=0x844c520, s=0x83b8990)

Re: cvs commit: httpd-2.0/modules/proxy proxy_balancer.c

2004-09-26 Thread Mladen Turk
Joe Orton wrote: On Sun, Sep 26, 2004 at 06:58:36AM -, [EMAIL PROTECTED] wrote: mturk 2004/09/25 23:58:36 Modified:modules/proxy proxy_balancer.c Log: Use the Christian von Roques's idea that makes the election mechanism much simpler. This also removes the need to count the

[OT] Developer lists and Reply-To header

2004-09-23 Thread Mladen Turk
Hi, Is there any reason why apr, apr-util, httpd mailing lists have Reply-To header set to the sender and not to the list itself. I think almost all other lists has the 'Replay-To' header set to the list itself. I mean, I'm receiving the messages from the list and not from the particular poster,

Re: [OT] Developer lists and Reply-To header

2004-09-23 Thread Mladen Turk
Greg Marr wrote: Is there any reason why apr, apr-util, httpd mailing lists have Reply-To header set to the sender and not to the list itself. Search for reply-to considered harmful on Google and you'll find more information than you ever wanted to read about both sides of the issue. If you

Re: Proxy_balancer, max_attempts ...odd?

2004-09-17 Thread Mladen Turk
NormW wrote: Greetings All, Just looking at a CVS build of 2.1, and on accessing the BalancerManager page, the FailoverAttempts (on a NetWare platform) show as -2119156632. Strange... did you rebuild mod_proxy too? Regards, MT. smime.p7s Description: S/MIME Cryptographic Signature

Re: cvs commit: httpd-2.0/modules/proxy proxy_ajp.c

2004-09-14 Thread Mladen Turk
Joe Orton wrote: On Thu, Sep 09, 2004 at 07:56:31PM -, [EMAIL PROTECTED] wrote: mturk 2004/09/09 12:56:31 Modified:modules/proxy proxy_ajp.c Log: Add function protos so that -Wmissing-declarations doesn't complain. Adding separate declarations within a .c file (rater than a

Re: cvs commit: httpd-2.0/modules/proxy proxy_ajp.c

2004-09-14 Thread Mladen Turk
[EMAIL PROTECTED] wrote: jorton 2004/09/14 10:29:36 Modified:modules/proxy proxy_ajp.c Log: * modules/proxy/proxy_ajp.c (proxy_ajp_handler, proxy_ajp_canon): Drop ap_ prefix, declarations and make static. Could you then do the same for proxy_http? Both ap_proxy_http_canon and

Re: cvs commit: httpd-2.0/modules/proxy proxy_balancer.c proxy_util.c mod_proxy.h

2004-09-10 Thread Mladen Turk
William A. Rowe, Jr. wrote: You introduce a race between multiple listening threads attempting to initialize the scoreboard together. post_config or child_init should solve the problem, no? Yes, I see that (now that you've mentioned :)). I'll use the child_init to initialize all balancers.

Re: HTTP proxy working for folks on 2.1-dev?

2004-09-09 Thread Mladen Turk
Jeff Trawick wrote: On Fri, 3 Sep 2004 12:30:34 -0400, Jeff Trawick [EMAIL PROTECTED] wrote: 192.168.1.11 - - [03/Sep/2004:12:05:59 -0400] GET http://127.0.0.1:10101/cgi-bin/printenv HTTP/1.0 404 236 error log has: [Fri Sep 03 12:05:59 2004] [error] [client 127.0.0.1] File does not exist:

Re: HTTP proxy working for folks on 2.1-dev?

2004-09-09 Thread Mladen Turk
Jeff Trawick wrote: Just committed the needed changes to allow forward proxies. I saw... definitely gets farther now... This shows how far it gets when I configure mozilla to use Apache as HTTP proxy: [Thu Sep 09 06:53:17 2004] [crit] [Thu Sep 09 06:53:17 2004] file http_protocol.c, line 981,

Re: HTTP proxy working for folks on 2.1-dev?

2004-09-08 Thread Mladen Turk
Jeff Trawick wrote: [Fri Sep 03 12:05:59 2004] [error] [client 127.0.0.1] File does not exist: proxy:http://127.0.0.1:10101/cgi-bin/printenv If nobody can/has reproduced the problem, I'll dig into it this weekend. I had time dig into it enough to get the feeling that it is something that the

Re: HTTP proxy working for folks on 2.1-dev?

2004-09-08 Thread Mladen Turk
Jeff Trawick wrote: What is the config that you are using. Does you requests get passed with previous version of proxy. If they do, please post the config so we can find why is it breaking. This is a very basic proxy config: proxyrequests on proxyvia on allowconnect 8081 80 8080 OK. From that

Re: HTTP proxy working for folks on 2.1-dev?

2004-09-08 Thread Mladen Turk
Graham Leggett wrote: proxyrequests on proxyvia on allowconnect 8081 80 8080 OK. From that config what would be remotes that we could connect to? Dynamically obtained from Via header or...? Seems to me that the balancer is totally unusable in such a configuration. Keep in mind proxyrequests on

Re: HTTP proxy working for folks on 2.1-dev?

2004-09-08 Thread Mladen Turk
Jeff Trawick wrote: Can you explain some real world usage of such configuration. Configure your web browser to use Apache as an HTTP proxy. This is a forward proxy? Are you speaking about that? If do, then the current implementation might be bogus, cause frankly speaking didn't test that a lot,

Re: HTTP proxy working for folks on 2.1-dev?

2004-09-08 Thread Mladen Turk
Graham Leggett wrote: Mladen Turk wrote: This is a forward proxy? Are you speaking about that? If do, then the current implementation might be bogus, cause frankly speaking didn't test that a lot, but was planning to do so. Or I've missed the subject again :). Proxyrequest on turns httpd

Re: Time for 2.0.51 and 2.1.0

2004-09-02 Thread Mladen Turk
William A. Rowe, Jr. wrote: Bad news for me and many others since without AJP support included in 2.0.x, users will still require to have mod_jk to link there HTTPD to Tomcats. Could we hope the dev team to relax the situation for mod_proxy/ajp in future 2.0.x release Admins understand why n.x -

Re: cvs commit: httpd-2.0/modules/proxy proxy_http.c

2004-08-24 Thread Mladen Turk
Justin Erenkrantz wrote: Modified:modules/proxy proxy_http.c Log: Use ap_str_tolower for lowercasing the scheme. That was the original intention (not apr_tolower). Can you please not mix formatting changes with code changes? Those spurious changes make it a lot tougher to review.

Worker mpm for WIN32

2004-08-23 Thread Mladen Turk
Hi, I've changed the mpm_winnt to support multiple child processes. The main reason was to have the same behavior like on worker mpm. Since I don't have multiprocessor box, it would be nice if someone could test if there is any performance gain over the existing implementation (there is none on

[PATCH] use zlib-1.2.1 with mod_deflate on WIN32

2004-08-12 Thread Mladen Turk
Hi, Small patch that enables building against zlib-1.2.1 instead of ancient 1.1.4 version. Index: mod_deflate.dsp === RCS file: /home/cvspublic/httpd-2.0/modules/filters/mod_deflate.dsp,v retrieving revision 1.10 diff -u -r1.10

[PROPOSAL] small dynamic config module

2004-08-12 Thread Mladen Turk
Hi all, To be able to use the new proxy balancer to it's full potential we need some sort of dynamic configuration. The typical scenarios are: a) Mark a node(s) as 'disabled' for maintenance. b) Add an extra node(s) for additional load. c) Change the load factors. At first I was thinking to add

Re: [PATCH] use zlib-1.2.1 with mod_deflate on WIN32

2004-08-12 Thread Mladen Turk
Bill Stoddard wrote: Mladen Turk wrote: Hi, Small patch that enables building against zlib-1.2.1 instead of ancient 1.1.4 version. Are there any compelling reasons to move from 1.1.4 to 1.2.1? Just curious and no time to investigate for myself right at the moment. As stated on the official

[proxy] New implementation ready for testing

2004-08-11 Thread Mladen Turk
Hi all, We've finished the initial development of extended mod_proxy. Since the development took place at jakata-tomcat-connectors, the source code can be found under ajp/proxy. Here is the list of major features added: 1. AJP13 protocol support 2. Connection pool for threaded servers 3. Added new

Re: [proxy] New implementation ready for testing

2004-08-11 Thread Mladen Turk
William A. Rowe, Jr. wrote: We've finished the initial development of extended mod_proxy. Since the development took place at jakata-tomcat-connectors, the source code can be found under ajp/proxy. I'm entirely +1 today for bringing it back into modules/proxy/ (it's a c-t-r branch.) How you did

Re: [proxy] New implementation ready for testing

2004-08-11 Thread Mladen Turk
Graham Leggett wrote: William A. Rowe, Jr. wrote: I'm actually very excited that we can offer in the 2.2 release - this really rocks. What you accomplished is very cool! I'm entirely +1 today for bringing it back into modules/proxy/ (it's a c-t-r branch.) How you did it makes this a

Re: [proxy] New implementation ready for testing

2004-08-11 Thread Mladen Turk
William A. Rowe, Jr. wrote: Never cross my mind that we'll need all those try-error-fix commits back on the httpd cvs tree. We actually like those - the next individual to say wow - this fix is easy! can go back over history and say grumf - they tried that in the first place :) Question...

RE: POST without Content-Length

2004-08-07 Thread Mladen Turk
Justin Erenkrantz wrote: We have a lot of proxy updates in 2.1, which are presumably getting test-driven over time. How would one go about proposing a wholesale backport? How about releasing 2.2 instead? ;-) How about backport :) JaeanFrederic, Henri and myself take a liberty

RE: POST without Content-Length

2004-08-07 Thread Mladen Turk
André Malo wrote: OTOH hiding something just to 'boost' a new version is not fair. I think, you've got something wrong. Perhaps :) As of the branch to 2.1, we've marked 2.0 stable and more or less freezed. That has nothing to do with being fair or not. The development just happens in

[PATCH] mod_proxy -- enable using 2.1-HEAD on 2.0-HEAD

2004-08-01 Thread Mladen Turk
Oops... gone trough different email, so reposting. Hi, Not a very 'critical' patch, but enables building mod_proxy on 2.0-HEAD (if someone finds that usefull). Since 2.1 has some nice features (will have more hopefully) here is the patch that enables that. Index: proxy_util.c

RE: [PATCH] mod_proxy -- enable using 2.1-HEAD on 2.0-HEAD

2004-08-01 Thread Mladen Turk
Justin Erenkrantz wrote: -if ((rv = apr_socket_create(newsock, backend_addr-family, +#if (APR_VERSION_MAJOR 0) +if ((rv = apr_socket_create( +#else +if ((rv = apr_socket_create_ex( #endif +newsock, backend_addr-family,

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
William A. Rowe, Jr. wrote: /* Scoreboard file, if there is one */ #ifndef DEFAULT_SCOREBOARD @@ -118,6 +119,7 @@ typedef struct { int server_limit; int thread_limit; +int lb_limit; ap_scoreboard_e sb_type;

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
André Malo wrote: William A. Rowe, Jr. wrote: This definitely breaks binary compatibility. Moving the lb_limit to the end of the struct will not break the binary compatibility. Correct? Not Correct. It *may* be the case. Depending on who allocates the stuff. Can you

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
William A. Rowe, Jr. wrote: Moving the lb_limit to the end of the struct will not break the binary compatibility. Correct? Yes, in the case of global_score, that would be safer. It seems that the additional lb_score 's element point was better placed. If you changed

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
William A. Rowe, Jr. wrote: Although we create the pointer-pointer logic in the children to avoid this, it's still possible that the code would break some modules. I can't envision a case where any of the scoreboard entries are allocated outside of our scoreboard.c code. OK, then.

[PATCH] scoreboard WAS RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
Hi all, Since there was some concerns regarding binary compatibility, here is the patch that uses different approach. 1. Revert the patch with changes to scoreboard structures 2. Add an extra hook that is run during ap_reopen_scoreboard with detached param. We will use our own shm, opening by

[PATCH] proxy lb support - step 1

2004-07-26 Thread Mladen Turk
Hi all, There has been some serious discussion for building load balancing support for mod_proxy. Here is the first in series of patches that will enable this. The patch adds lb support in scoreboard, so that statuses for each lb worker can be calculated for each child process. It uses optional

RE: Invitation to HTTPD commiters in tomcat-dev

2004-07-21 Thread Mladen Turk
Graham Leggett wrote: Thing is it's easier for end users to not have to mess around with third party builds if it can possibly be avoided, and it's the needs of the end users who are the most important, not the developers. It was the main reason why we tried to go beyond the concepts

RE: Invitation to HTTPD commiters in tomcat-dev

2004-07-21 Thread Mladen Turk
Graham Leggett wrote: I don't think that it is necessary for a mod_ajp to be included inside the mod_proxy, although they are sharing some common concepts. I think it's very necessary - sharing those common concepts ultimately makes for doing things in a consistent way. It

RE: [PATCH] ApacheMoitor -- Enable XP visual style

2004-03-17 Thread Mladen Turk
Hi, -Original Message- From: Jeff Trawick Is this to correct a problem for all Windows platforms which manifests itself on Windows XP, or just something that people with Windows XP may wish to play with, or what? On pre-XP it behave like before, but on XP it has visual style

[PATCH] ApacheMoitor -- Enable XP visual style

2004-03-15 Thread Mladen Turk
Hi, As said in the subject... The attached file ApacheMonitor.exe.manifest needs to be copied in the /support/win32/ dir. Index: ApacheMonitor.rc === RCS file: /home/cvspublic/httpd-2.0/support/win32/ApacheMonitor.rc,v retrieving

RE: cvs commit: httpd-2.0/support/win32 ApacheMonitor.c ApacheMonitor.h ApacheMonitor.rc wintty.c

2004-01-02 Thread Mladen Turk
-Original Message- From: André Malo [mailto:[EMAIL PROTECTED] Why? Unless the file changes in 2004, the copyright doesn't. And, in any case, the earliest date applies, so it gets us nowhere. It was done for LICENSE 1.0 and 1.1 all the time for some reason. But I don't

[PATCH] HTTP_VERSION macro

2003-11-02 Thread Mladen Turk
Hi, In the httpd there is #define HTTP_VERSION (me be clever ;). Well, there is also diferent define in the wininet.h with the same name. Can we rename that define to AP_HTTP_VERSION like in the apache 1.3.x? Since this affects only us poor win developers hope that others wouldn't mind. MT.

RE: Hooking child termination

2003-09-12 Thread Mladen Turk
From: William A. Rowe, Jr. Is there a possibility to add some sort of a hook to a parent that will execute when the child process dies? I would like to have a config option that will (something like Windows service manager has for the services itself) behave differently on first and

Hooking child termination

2003-09-11 Thread Mladen Turk
Hi all, Is there a possibility to add some sort of a hook to a parent that will execute when the child process dies? I would like to have a config option that will (something like Windows service manager has for the services itself) behave differently on first and on the consecutive failures,

RE: mod_vfsindex -- need some review

2003-01-30 Thread Mladen Turk
-Original Message- From: Justin Erenkrantz At this point, I think we might want to consider something more general that has been a pet peeve of ours: pluggable core filesystems. Look in the ROADMAP file on 'making apache repository-agnostic.' -- justin Well, the

mod_vfsindex -- need some review

2003-01-27 Thread Mladen Turk
Hi, This is the virtual file system module, meaning that you can serve context from non-file systems. Currently it only supports zip files, but has already added support for gzip and bzip archives. It is based on mod_autoindex, with couple of extra lines to mount filesystem and deliver context.

[PATCH] Makefile.win

2003-01-15 Thread Mladen Turk
Hi, Fixes InstallBin Debug build cause the *pdb's of apr-iconv are moved to /Debug/iconv. Think that both ccs and ces are there. RCS file: /home/cvspublic/httpd-2.0/Makefile.win,v retrieving revision 1.122 diff -u -r1.122 Makefile.win --- Makefile.win14 Jan 2003 18:28:13 - 1.122

[PROPOSAL] make child processes more awareable

2002-10-25 Thread Mladen Turk
Hi, This proposal is from the module developer point of view, so it might be totally wrong from the server one. Simply I wish as a module (I'm trying to write that in a second person; and certainly in the bad English ;) to be aware of the server status. More frankly couple of things: 1. Am I

server/mpm/monitoring-services.txt

2002-10-23 Thread Mladen Turk
Hi, Are there still need for that file? Think we have AM for a year or so. MT.

Strange SSL log entries for 400

2002-10-10 Thread Mladen Turk
Hi, Dunno if that's for the bugzilla but if I make a bad request using http instead https for example: http://10.0.0.92:443/manual/index.html.en The log entry of mod_ssl error_log gets the: 10.0.0.92 - - [10/Oct/2002:11:27:18 +0200] GET / HTTP/1.0/index.html.en HTTP/1. 400 519 Looks like

RE: Vote: mod_jk connector in /experimental

2002-09-03 Thread Mladen Turk
I'd like to start a vote to get mod_jk in the apache core distribution. The jk is not in the TC distribution, but rather in the jakarta-tomcat-connectors. It seems silly to me to leave it in the tomcat distribution, That's your opinion, and you should first ask the question to the right

RE: Vote: mod_jk connector in /experimental

2002-09-03 Thread Mladen Turk
From Peter Van Biesen Anyway, I gathered that apache was a organization that promoted public initiative. Apparently, it is not appreciated. I hope your attitude will get you far in your carreer ( probably a management position, I'm sure ... ). There is no need to take that personal.

RE: 2.0/2.1 split?

2002-08-30 Thread Mladen Turk
-Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 6:10 PM To: [EMAIL PROTECTED] Subject: Re: 2.0/2.1 split? I don't think we have enough -user- community to continue development on any Apache 2.x. UNLESS we reconsider what

Move the regex code to apr-utils?

2002-08-09 Thread Mladen Turk
Hi, Are there any particular reasons that regex code shouldn't be moved to the apr-utils like expat is. That way we'll be (the non httpd developers) able to use the same code for the things that need regular expressions, instead of linking the same lib multiple times. MT.

RE: [PATCH] ApacheMonitor.c

2002-07-12 Thread Mladen Turk
-Original Message- From: David Shane Holden [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 8:11 PM To: [EMAIL PROTECTED] Subject: [PATCH] ApacheMonitor.c This patch fixes AM where it throws an error window when trying to control the service for lack of query status

RE: DO NOT REPLY [Bug 10460] New: - Service Monitor reports wrong service state

2002-07-08 Thread Mladen Turk
Think this fixes the auth problems. SC_MANAGER_ALL_ACCESS - GENERIC_EXECUTE MT. In the superuser accounts, the 'Stop' button is grayed out, and the 'Start' button doesn't do anything. 'net stop apache2' and 'net start apache2' work fine from the command line in the superuser

[PATCH] mpm_winnt fix the ap_mpm_query

2002-07-04 Thread Mladen Turk
Hi, The patch enables finding a child slot in the scoreboard using find_child_by_pid. Right now the reported number of childs is 0 which is not true, cause we have a single child, and it is in the scoreboard image already. It's not a big problem, but disables writing portable code among

ap_mpm_query in the mpm_winnt

2002-07-02 Thread Mladen Turk
Hi, Just wondering why the query for the AP_MPMQ_MAX_DAEMONS return 0 instead of IMO 1? I mean there is on child after all, and I cannot use the find_child_by_pid. We are using that in mod_jk2, and obviously always getting -1. MT.

RE: TomcatMonitor

2002-06-16 Thread Mladen Turk
-Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED]] Sent: 16. lipanj 2002 5:03 To: [EMAIL PROTECTED] Subject: Re: TomcatMonitor I wouldn't have a problem with that. No sense reinventing the wheel for one or the other of us... +1. and a ++1 here.

RE: TomcatMonitor

2002-06-16 Thread Mladen Turk
-Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED]] Sent: 16. lipanj 2002 18:55 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; William A. Rowe, Jr.; [EMAIL PROTECTED] Subject: RE: TomcatMonitor I really hate the idea of building a new extension API when

TomcatMonitor

2002-06-15 Thread Mladen Turk
Hi, As a maker of ApacheMonitor I _know_ that the support for the Tomcat's start/stop/monitor would be trivial. The question is can we (Apache2 and Tomcat) agree to coexist, or make two different try buttons. MT.

RE: [Bug 9858] New: - ApacheMonitor can not start service due to bug in service.c or ApacheMonitor.c (fwd)

2002-06-14 Thread Mladen Turk
-Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED]] Sent: 14. lipanj 2002 9:18 To: Cliff Woolley Cc: [EMAIL PROTECTED] Subject: Re: [Bug 9858] New: - ApacheMonitor can not start service due to bug in service.c or ApacheMonitor.c (fwd) This is the same

RE: [Bug 9858] New: - ApacheMonitor can not start service due to bug in service.c or ApacheMonitor.c (fwd)

2002-06-13 Thread Mladen Turk
-Original Message- From: Cliff Woolley [mailto:[EMAIL PROTECTED]] Sent: 14. lipanj 2002 4:52 To: [EMAIL PROTECTED]; William Rowe Subject: Re: [Bug 9858] New: - ApacheMonitor can not start service due to bug in service.c or ApacheMonitor.c (fwd) Ideas, anybody? this

[PATCH] mpm_winnt

2002-04-25 Thread Mladen Turk
Hi, Didn't know how to name that patch. I've been able to simulate it playing with the preloaded modules. Basically the child tries to write to logs using corrupt ap_server_conf. MT. === RCS file:

RE: 2.0.35 related: Website tweak, upgrade apache.org servers

2002-04-06 Thread Mladen Turk
-Original Message- From: Sander Striker [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 06, 2002 1:23 PM http://httpd.apache.org still shows: Apache 1.3.24 is the best version of Apache currently available; everyone running 1.2.X servers or earlier are strongly urged to

[ADDON] Console wrapper for WIN32

2002-01-13 Thread Mladen Turk
. * * Contributed by Mladen Turk [EMAIL PROTECTED] * * 13 Jan 2002 * */ #define _WIN32_WINNT 0x0400 #ifndef STRICT #define STRICT #endif #ifndef OEMRESOURCE #define OEMRESOURCE #endif #include windows.h #include windowsx.h

Re: Solaris 2.5.1 builds?

2002-01-12 Thread Mladen Turk
- Original Message - From: Aaron Bannert [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 11, 2002 6:47 PM Subject: Re: Solaris 2.5.1 builds? Well core gets dumped for all test, but interesting almost all the test are passed except the testsock which complains that

Re: Solaris 2.5.1 builds?

2002-01-11 Thread Mladen Turk
- Original Message - From: Justin Erenkrantz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 11, 2002 2:09 AM Subject: Re: Solaris 2.5.1 builds? That should fix it. If not, find libgcc_s.so.1 and add -R/path/to/libgcc/dir to LDFLAGS. -- justin OK... did using

Solaris 2.5.1 builds?

2002-01-10 Thread Mladen Turk
Hi, I got my hands on some archaic Sun IPX with Solaris 2.5.1, and I installed the latest patch bundle, gcc302, binutils 2.11.2, libtool1.4 and automake. Now building Apache1.3.22 goes well but latest 2.0 from CVS or 28 beta fails. Did someone build 2.0 on that platform? Any leads would be

Re: Solaris 2.5.1 builds?

2002-01-10 Thread Mladen Turk
- Original Message - From: Justin Erenkrantz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 10, 2002 11:29 PM Subject: Re: Solaris 2.5.1 builds? On Thu, Jan 10, 2002 at 10:55:58PM +0100, Mladen Turk wrote: Hi, I got my hands on some archaic Sun IPX with Solaris

[PATCH] ApacheMonitor

2001-12-28 Thread Mladen Turk
Hi, Minor patch that enables displaying of logo bitmap. MT. Index: support/win32/ApacheMonitor.rc === RCS file: /home/cvspublic/httpd-2.0/support/win32/ApacheMonitor.rc,v retrieving revision 1.9 diff -u -r1.9 ApacheMonitor.rc ---

[PATCH] mpm_winnt -- check for connection and then update context

2001-11-20 Thread Mladen Turk
Hi, The WIN2K and WINXP logs something like : (32557)Socket is not connected: setsockopt(SO_UPDATE_ACCEPT_CONTEXT) failed. For almost each connection made. Although this is not a fatal error, the setsockopt has no sense on the socket that hasn't been accepted. The patch calls the getsockopt and

<    1   2   3   4   5   >