Re: why are ipv4 address being mapped as ipv6?

2005-03-18 Thread Edward Rudd
On Fri, 18 Mar 2005 09:24:16 +, Colm MacCarthaigh wrote: A block like: #if APR_HAVE_IPV6 if (sockaddr-family == AF_INET6 IN6_IS_ADDR_V4MAPPED((struct in6_addr *)sockaddr-ipaddr_ptr)) { /* Address is IPv4-mapped-IPv6 */ } #endif Thanks,

why are ipv4 address being mapped as ipv6?

2005-03-17 Thread Edward Rudd
I have an ftpd protocol module for apache (http://www.outoforder.cc/projects/apache/mod_ftpd) and have been tracking down a bug that a user is having and have finally tracked down the cause of the issue.. I mod_ftpd is running on a (linux in this case 2.4 or 2.6 kernel) system w/ IPV4 and IPV6

Re: The use of CORE_PRIVATE

2005-02-10 Thread Edward Rudd
On Wed, 09 Feb 2005 11:25:44 +1100, Bojan Smojver wrote: [snip] Is it legal for third party modules to rely on CORE_PRIVATE in order to gain access to functions (and other bits) that would otherwise be out of bounds? For instance, I'm trying to rely on functions that help in creating

[PATCH 31128] fix for CacheDisable in mod_cache

2004-10-17 Thread Edward Rudd
I've attached a patch for mod_cache that resolve bug #31128 where using CacheDisable disables ALL caching not just the URL you specify. Paul Querna has just committed this to CVS HEAD.. And I'm +1 for backporting this to 2.0. --- mod_cache.c.bak Thu Aug 26 11:59:44 2004 +++ mod_cache.c Sun

Re: Moving httpd-2.0 to Subversion

2004-09-18 Thread Edward Rudd
On Fri, 17 Sep 2004 17:20:08 -0700, Roy T. Fielding wrote: +1 Subversion still lacks a few features in commit notices, and I don't see the equivalent of viewcvs diff (must be hidden somewhere), but the developer interaction is much better. the latest CVS of Horde's Chors provids a

Re: http://httpd.apache.org/ note about 2.0.50

2004-07-01 Thread Edward Rudd
On Thu, 01 Jul 2004 00:51:49 -0500, Albert Chin wrote: On Wed, Jun 30, 2004 at 10:59:01PM -0500, Edward Rudd wrote: Ok, thanks. I presume the patch below fixes CAN-2004-0488. According to the description for CAN-2004-0488, the buffer overflow is in ssl_util_uuencode_binary(), found

Re: http://httpd.apache.org/ note about 2.0.50

2004-06-30 Thread Edward Rudd
On Wed, 30 Jun 2004 20:58:32 -0500, Albert Chin wrote: If 2.0.50 addresses one security vulnerability, why are two listed? I thought CAN-2004-0488 was for 1.3.x? Someone probably miscounted.. And CAN-2004-0488 applied to mod_ssl for 1.3.x AND for mod_ssl in 2.0.x.

Re: 2.2 Roadmap?

2004-06-27 Thread Edward Rudd
Changes.(Could be done once 2.2 is stable) I feel this is a very important module to get working and stabilized. Especially for use with LDAP authentication. Edward Rudd http://www.outoforder.cc/

RE: Apache HTTP Server 2.0.50-rc2 tarballs available for testing

2004-06-23 Thread Edward Rudd
On Wed, 23 Jun 2004 08:42:14 +0200, Andre Schild wrote: Hello, It fails when compiling xlate.c to generate libaprutil xlate.c c:\Develop\Apache\httpd-2.0.50-rc1\srclib\apr-util\xlate\xlate.c(181) : error C2 198: 'apr_iconv_close' : Nicht genuegend Parameter uebergeben

Re: mod_status hook

2004-06-23 Thread Edward Rudd
On Wed, 23 Jun 2004 10:31:08 -0400, Brian Akins wrote: How do I register a mod_status hook. Looking at the code, I figure I register a hook using ap_hook_status_hook (if I try anything else, I get a complier warning). However I get undefined symbol: ap_hook_status_hook when I try to run.

Re: Apache HTTP Server 2.0.50-rc2 tarballs available for testing

2004-06-23 Thread Edward Rudd
? This mailing list is the perfect place to discuss changes to the 2.1-HEAD branch. -- Tom Edward Rudd

Re: mod_status hook

2004-06-23 Thread Edward Rudd
On Wed, 23 Jun 2004 14:26:20 -0400, Brian Akins wrote: Edward Rudd wrote: APR_OPTIONAL_HOOK(status_hook,my_status_hook, NULL,NULL,APR_HOOK_MIDDLE); Thanks! I had to add another argument: APR_OPTIONAL_HOOK(ap, status_hook, my_status_hook, NULL, NULL, APR_HOOK_MIDDLE); The 6th

Re: mod_status hook (fixed)

2004-06-23 Thread Edward Rudd
On Wed, 23 Jun 2004 14:58:04 -0400, Brian Akins wrote: Edward Rudd wrote: The 6th (or 1st) argument is only required when using 2.1-HEAD (apr-util 1.0).. Apache 2.0/APR-util 0.9.5 don't have this extra argument. $ grep APR_OPTIONAL_HOOK /opt/apache/include/* ... /opt/apache/include

Re: Apache HTTP Server 2.0.50-rc2 tarballs available for testing

2004-06-23 Thread Edward Rudd
On Wed, 23 Jun 2004 13:29:21 -0500, William A. Rowe, Jr. wrote: My only confusion is what your patch for AllowOverrideOptions does, that AllowOverride doesn't accomplish. I've too few cycles to dig deeply, but could you provide a trivial example? From reading the bug report, Tom's patch

IfModule symbol extension Backport request (PR: 29003)

2004-06-21 Thread Edward Rudd
(rev 1.280) include/http_config.h (rev 1.110) modules/mappers/mod_so.c (rev 1.57) modules/mappers/mod_so.h (rev 1.1 New File) -- Edward Rudd [EMAIL PROTECTED] Website http://www.outoforder.cc/? build-prefork Index: configure.in === RCS

Re: Rebuilding modules.apache.org

2004-06-02 Thread Edward Rudd
On Thu, 03 Jun 2004 04:36:07 +0200, Guenter Knauf wrote: We are looking for feedback on our plans. What do you want to see on a new modules website? What features are important to you? What hurdles do you see to a successfully replacement? What other audiences should we try to address?

[PATCH] Bug #29003 IFModule Enhancements

2004-05-28 Thread Edward Rudd
I made a post on the 20th about this bug report.. And there is now a new patch available that Andre and I worked on that solves all the issues that I mentioned before in regards to static/prelinked modules. The patch IDs are 11685 and 11690, posted on 5/27 and 5/28 respectively. I would like

Re: [Patch] IfSymbol directive (bug 29003)

2004-05-21 Thread Edward Rudd
the symbolname so once the LoadModule call is done, OR the module is statically compiled in, the internal list o' symbols contains EVERYTHING. Either by altering STANDARD20_MODULE_STUFF(mysymbol_module), or a call in register_hooks. Edward Rudd

[Patch] IfSymbol directive (bug 29003)

2004-05-20 Thread Edward Rudd
to point to sapi_apache2.c ). Let me know your thoughts on these ideas.. and any other are welcome. I currently have patches attached to the bug for solutions 1 through 3. Regards, Edward Rudd

Re: 2.0.49 : mod_ldap = util_ldap.c ?

2004-04-21 Thread Edward Rudd
On Wed, 21 Apr 2004 15:44:55 +0200, Peter Van Biesen wrote: Hi everyone, I've compiled httpd 2.0.49 with mod_auth_ldap and mod_ldap support ( I used --with-ldap=static ). When I do a httpd -l, I can't seem to find mod_ldap in the list. I've been looking through the makefiles and httpd

Re: Bugzilla 28523: ap_set_subreq_protocol not exported on win32.

2004-04-21 Thread Edward Rudd
I've posted this to the bugzilla as bug # 28523 On Mon, 19 Apr 2004 19:02:04 -0500, Edward Rudd wrote: In the file server/protocol.c (line 983 in httpd-2.0.49) the function void ap_set-sub_req_protocol(request_rec *rnew, const request_rec *r) is not exported on win32 builds of apache

ap_set_subreq_protocol not exported on win32.

2004-04-19 Thread Edward Rudd
In the file server/protocol.c (line 983 in httpd-2.0.49) the function void ap_set-sub_req_protocol(request_rec *rnew, const request_rec *r) is not exported on win32 builds of apache.. a AP_DECLARE needs to be wrapped around void AP_DECLARE(void) ap_set-sub_req_protocol(request_rec *rnew, const

Re: mod_auth_digest and MSIE

2004-03-19 Thread Edward Rudd
I do have to question the *idea* of hacking an RFC compliant module to support non RFC behavior? I know for Cyrus IMAP their stance is not to break with the RFC, but to have the consumers complain to the MUA creator to fix their bug. Though this issue has been brought up to MS over a year ago,

httpd-pop3 buffer overflow bug

2004-01-03 Thread Edward Rudd
I have found a major buffer overflow bug... I found this while working on my ftp module for apache 2.0.. http://outoforder.cc/projects/apache/ which was initially based off of the structure of httpd-pop3. the issue is ap_getword_white_nc moves the pointer in buffer up by the number of characters