why does ap_invoke_handler init input filters?

2006-09-12 Thread Issac Goldstand
Hi all, I've been trying to solve my confusion on the exact order of hooks and filters being invoked inside an HTTP request, and was wondering why ap_invoke_filter_init(r-input_filters) is called inside of ap_invoke_handler (server/config.c:338) ? I can understand initializing output filters at

Re: why does ap_invoke_handler init input filters?

2006-09-12 Thread Issac Goldstand
If I went to all that trouble to give a line number below, I should probably mention that I'm looking at the 2.2.3 release. Sorry for not mentioning that the first time around. Issac Goldstand wrote: Hi all, I've been trying to solve my confusion on the exact order of hooks and filters

mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-13 Thread Issac Goldstand
Hi all, I've been hacking at mod_cache a bit, and was surprised to find that part of the decision to serve previously cached content or not was being made by the backend provider and not mod_cache; specifically, the expiration date of the content seems to be checked by mod_disk_cache (as part of

Re: how to get the temp file name

2006-09-14 Thread Issac Goldstand
-pool, my_hook, NULL, NULL); apreq_hook_add(aph, my_hook_handle); I think I'll be able to set a note with this technique. Brian McQueen On 9/12/06, Issac Goldstand [EMAIL PROTECTED] wrote: Well, the spool file is just a normal apr_file_t, and the actual file handle is accessable via

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-14 Thread Issac Goldstand
... Issac Davi Arnaut wrote: On 13/09/2006, at 16:29, Issac Goldstand wrote: Hi all, I've been hacking at mod_cache a bit, and was surprised to find that part of the decision to serve previously cached content or not was being made by the backend provider and not mod_cache; specifically

Re: [PATCH] (resend) mod_disk_cache LFS-aware config

2006-09-14 Thread Issac Goldstand
A separate branch *would* really be nice; as I've got my own changes to mod_cache that I'm working on (support for offline-browsing caching, if upstream servers aren't available + attempt to cache other normally non-cachable content (POSTs, etc)). Regardless of whether it's fit to be

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-18 Thread Issac Goldstand
Brian Akins wrote: Niklas Edmundsson wrote: Extra tracking sounds unnecessary if you can do it in a way that doesn't need it. It's not extra it just adding some tracking. When an objects gets cached log (sql, db, whatever) that /blah/foo/bar.html is cached as

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-18 Thread Issac Goldstand
Brian Akins wrote: Issac Goldstand wrote: I can see how other tracking information (like how often the cached entity is accessed, last access time, etc) would be useful, albeit expensive to keep track of, but I don't understand this specific example. It's not expensive

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-18 Thread Issac Goldstand
Brian Akins wrote: Issac Goldstand wrote: I can see how other tracking information (like how often the cached entity is accessed, last access time, etc) would be useful, Also, those statistics could be updated asynchronously by using a queue so that statistics doesn't slow down a busy

Randy Kobe's win32 apxs tool

2006-09-19 Thread Issac Goldstand
Randy Kobes has had this nifty tool to build an apxs (and apr-config/apu-config) script for win32 around for a while. It's currently hosted by the mod_perl project at http://perl.apache.org/dist/win32-bin/install_apxs. Might it not make sense to have a link to this somewhere on the httpd

Re: Randy Kobe's win32 apxs tool

2006-09-19 Thread Issac Goldstand
to apxs from there... The files themselves are already on all ASF download mirrors. Steffen wrote: I am hosting it too at http://www.apachelounge.com/download , see at the bottom af the page. Steffen - Original Message - From: Issac Goldstand [EMAIL PROTECTED] To: dev@httpd.apache.org

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Issac Goldstand
Niklas Edmundsson wrote: On Mon, 18 Sep 2006, Brian Akins wrote: Niklas Edmundsson wrote: * Only one session caches the same file. Easy to do if we use deterministic tmp files and not the way we currently do it. Then all you have to do is when creating temp files use O_EXCL. Or,

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Issac Goldstand
Graham Leggett wrote: Niklas Edmundsson wrote: However, I don't see how you can do a lockless design with multiple files and an index that can do: * Clients read from the cache as files are being cached. * Only one session caches the same file. * Header/Body updates. * No index/files

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Issac Goldstand
Brian Akins wrote: Issac Goldstand wrote: I don't understand why bother getting so complex. Touch/truncate the body file when storing the header, and then a missing body means things have gone amok - retry the request. Conversely, a zero-length, or C-L body length means another thread

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Issac Goldstand
Graham Leggett wrote: On Wed, September 20, 2006 5:27 pm, Brian Akins wrote: unless 0 is a valid content-length, which it can be. Also, what about when we are reading something in without a know C-L, for example from an origin doing chunks? I am not sure what the current cache code

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Issac Goldstand
Ruediger Pluem wrote: On 09/20/2006 08:27 PM, Issac Goldstand wrote: Graham Leggett wrote: On Wed, September 20, 2006 5:27 pm, Brian Akins wrote: unless 0 is a valid content-length, which it can be. Also, what about when we are reading something in without a know C-L, for example from

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Issac Goldstand
Ruediger Pluem wrote: On 09/20/2006 09:59 PM, Issac Goldstand wrote: Ruediger Pluem wrote: First of all I guess you mean: BEFORE the CACHE_SAVE filter :-). Yes, there is a reason why we cannot do this: This would create a possible DoS, because we have to suck in the whole response first

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Issac Goldstand
This differs from a content coding in that the transfer-coding is a property of the message, not of the original entity. Based on that, it seems to be ok. However, we'd have to remove strong ETags as a side-effect if it was done (since strong ETags change when entity headers

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-21 Thread Issac Goldstand
Issac Goldstand wrote: In any case, if we're proxying for an HTTP/1.0 client using HTTP/1.1 (too tired to check if mod_proxy preserves HTTP version - but will try to check tomorrow if no one beats me to it), or even serving cached content to a 1.0 client originally received by a 1.1 request

Re: [PATCH] mod_disk_cache working LFS (filecopy)

2006-09-26 Thread Issac Goldstand
Forgive me for missing the obvious, but why not just use mod_file_cache for this? I recall you mentioning that your use of mod_cache was for locally caching very large remote files, so don't see how this would help that in any case since the file doesn't exist locally when being stored, and

[PATCH] proposal to add interactive CGI module

2006-10-05 Thread Issac Goldstand
Hi all, SHORT VERSION: Patch to enable CGI scripts running from a terminal (shell) to lazily request their query_string/body/cookie parameters interactively (rather than requiring extra environment variables to be set up, and entity bodies to be piped in). LONG VERSION: At my current

Proposal for enhanced metadata in (proposed) cgi-enhanced module

2006-10-05 Thread Issac Goldstand
Regarding the enhanced parameter support idea mentioned in my previous mail, what I have in mind is to provide a list of all expected parameters as a struct in the CGI and pass it to apreq immediately after initialization (after, so there's no API incompatibility issues). The struct would

Re: mod_offline

2006-10-24 Thread Issac Goldstand
Graham Leggett wrote: Issac Goldstand wrote: - Cache-Control and Pragma headers must be stripped from requests into the cache. Why? Just because you are in offline mode doesn't mean other proxies between you and the client (or the client itself) are. Other proxies don't matter

Re: svn commit: r468373 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c modules/cache/mod_cache.h modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h modules/cache/mod_mem_cache.c

2006-10-30 Thread Issac Goldstand
Justin Erenkrantz wrote: I will also note that the mod_cache provider system has explicit versioning, so any modifications to the providers should be represented with a new version number. (i.e. providers for version 0 should work while offering new features in version 1-class providers.) We

Re: svn commit: r468373 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c modules/cache/mod_cache.h modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h modules/cache/mod_mem_cache.c

2006-10-30 Thread Issac Goldstand
Justin Erenkrantz wrote: On 10/30/06, Issac Goldstand [EMAIL PROTECTED] wrote: Can you clarify the above a bit? I don't understand what you're referring to. Looking at the 2.2.3 tag, what versioning is currently in place? Look at disk_cache_register_hook. /* cache initializer

Re: [RELEASE CANDIDATES] Status ?

2006-10-30 Thread Issac Goldstand
Philip M. Gollucci wrote: this one time in band camp Issac Goldstand said on 10/29/06 01:41: If you're planning on rolling libapreq-2.09 soon, maybe we should include the intial work done in /branches/enhanced-cgi/ http://svn.apache.org/repos/asf/httpd/apreq/branches/enhanced-cgi/ It seems

Re: svn commit: r468373 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c modules/cache/mod_cache.h modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h modules/cache/mod_mem_cache.c

2006-10-30 Thread Issac Goldstand
Justin Erenkrantz wrote: On 10/30/06, Issac Goldstand [EMAIL PROTECTED] wrote: Looking at provider.c, a couple of questions spring to mind: 1) Why isn't this part of apr-util? (it seems similar to apr_optional.h - just intended for vtables rather than functions, and with this version info

Re: cache: the store_body interface

2006-10-31 Thread Issac Goldstand
Joe Orton wrote: The existing 2.x store_body interface passed a brigade to the storage provider's store_body() callback. It is impossible for the provider to store all of such a brigade without consuming an arbitrary amount of RAM, since the brigade may contain morphing buckets (a CGI/PIPE

Win x64 build targets?

2006-11-02 Thread Issac Goldstand
Hi all, I just upgraded to a new PC with EM64T enabled, and got WinXP x64 edition, VS 2003 and a 64-bit-enabled version of the Windows SDK. I wanted to try building native 64-bit builds of httpd 2.2.3. APR seems to compile everything, but on linking I get the following error: link.exe

Re: [RELEASE CANDIDATE]: Apache-Test-1.29-RC3

2006-11-24 Thread Issac Goldstand
PASS Win32 Perl-5.8.8 + Apache 2.2.3 Philip M. Gollucci wrote: A release candidate for Apache-Test 1.29-rc3 is now available. http://people.apache.org/~pgollucci/at/Apache-Test-1.29-rc3.tar.gz Please take the time to exercise the candidate through all your existing applications that use

Storing per-child-process data

2006-11-29 Thread Issac Goldstand
Hi all, I'm trying to create some data-structures on a per-child-process basis. I do the initialization in the child_init hook, and register a cleanup for the pchild pool to clean it up. However, I'm unsure as to where the best place to stash the data is (request-phase handlers will need it).

Re: DBD spewing crit error messages on OS X default install (trunk)

2006-12-09 Thread Issac Goldstand
FYI I get them too as early as 2.2.3 if I build mods-enabled=most or all Issac Roy T. Fielding wrote: This is a bit unsettling, especially since I neither need nor want any database-backed auth. == [Thu Dec 07 13:49:44 2006] [notice] Digest: generating secret for digest authent

Re: svn commit: r488780 - /httpd/httpd/branches/2.2.x/STATUS

2006-12-20 Thread Issac Goldstand
If we're in backport season, I have a quick patch that I whipped up yesterday to fix mod_disk_cache on 2.2.x on systems that have APR_SENDFILE_ENABLED but EnableSendfile Off. Issac William A. Rowe, Jr. wrote: [EMAIL PROTECTED] wrote: Votes and Notes; the first four I would like to see

Re: Headache, Win32 Service Name for Apache 2.2

2007-01-04 Thread Issac Goldstand
William A. Rowe, Jr. wrote: One of three things can happen here... please express your preference (if you have one) [ ] Change the MPM code to use Apache2.2 by default (and Apache2.4 in trunk) [X] Change the Installer to go back to Apache2 as the default service (this makes

Re: [VOTE] httpd-2.2.4 release candidate for review

2007-01-07 Thread Issac Goldstand
Seems to me that the autodetection which used to prevent mod_deflate from building on win32 unless zlib is in the srclib directory is broken. I have a vanilla unzip for the win-src, and it's failing on missing zlib headers... On 1/6/07, *William A. Rowe, Jr.* [EMAIL PROTECTED] mailto:[EMAIL

Re: process the request

2007-01-09 Thread Issac Goldstand
They're basically macros. More accurately they trigger every module which registers hooks for pre_connection or process_connection to run the function they have registered. Issac 张 臻博 wrote: hi, Acturally, from APR, you can not find any hint for those two. As you search from this place:

Re: 2.2.4 windows binary w/ssl?

2007-01-10 Thread Issac Goldstand
I think the MSI should autogenerate a self-signed cert at least (last thing we need is for people to deploy a static pre-distributed cert which would make it that much easier to do man-in-the-middle attacks). Would be great if the MSI had a choice to use an existing cert, or generate a new one

Re: 2.2.4 windows binary w/ssl?

2007-01-11 Thread Issac Goldstand
William A. Rowe, Jr. wrote: Jorge Schrauwen wrote: Do note that not all users that will chose the SSL package will know how to correctly fill in the fields. s/not all/a small minority of/ They can't figure out what Domain Name means, let's be serious :) On 1/10/07, *Issac Goldstand

Re: 2.2.4 windows binary w/ssl?

2007-01-11 Thread Issac Goldstand
Jorge Schrauwen wrote: On 1/10/07, *William A. Rowe, Jr.* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Jorge Schrauwen wrote: Do note that not all users that will chose the SSL package will know how to correctly fill in the fields. s/not all/a small

Re: 2.2.4 windows binary w/ssl?

2007-01-12 Thread Issac Goldstand
William A. Rowe, Jr. wrote: Issac Goldstand wrote: I'd agree if mod_ssl is disabled by default, but if it is, why are they downloading the mod_ssl-enabled installer? You miss the point, it's illegal in some jurisdictions to possess/use such cryptography. That installer will remain

Re: [PATCH] mod_autoindex character set

2007-02-01 Thread Issac Goldstand
Dr. Peter Poeml wrote: As a totally optional addition, it might be possible to let mod_autoindex figure out the actual encoding, and automatically set an appropriate character set. There are some more details in https://bugzilla.novell.com/show_bug.cgi?id=153557 . IIRC, libapreq has defined a

Re: Apache2 Shared Memory problem

2007-02-11 Thread Issac Goldstand
Nick Kew wrote: On Sun, 11 Feb 2007 13:46:11 +0100 Aron Szabo [EMAIL PROTECTED] wrote: I need an array or a hash or an apache table to be WRITABLE/READABLE from every apache child. This vhost module is a modified version of vhost-mysql . But I dont want to do an sql query on every

build httpd/apr on vista with latest SDK

2007-02-13 Thread Issac Goldstand
Has anyone successfully built httpd on Vista with the SDK and bundled compiler? Issac

Re: build httpd/apr on vista with latest SDK

2007-02-13 Thread Issac Goldstand
in the development of native (Win32) and managed (.NET) systems for the Windows platform. The tools include command-line compilers (both x86 and x64), debuggers, performance monitoring applications, security management utilities, and more. Issac William A. Rowe, Jr. wrote: Issac Goldstand wrote: Has

Re: build httpd/apr on vista with latest SDK

2007-02-13 Thread Issac Goldstand
William A. Rowe, Jr. wrote: Issac Goldstand wrote: I think it's the compilers that come with vs 2005 express editions. Then the answer I suppose is ... yes. 2005 compiles are working fine. FWIW, if you are trying to build from the GUI - that's it's own can of worms, it mis-parses

[RFC] Adding UDP support to server

2007-02-20 Thread Issac Goldstand
I'm working on a protocol module for Apache 2.2 and ran into the lack of UDP support in httpd. I'd like to try and remedy the situation in a manner best suited for merging to trunk + backporting where possible. I know that people have asked about it in the past, and if we really want to be d, we

Re: [RFC] Adding UDP support to server

2007-02-25 Thread Issac Goldstand
Jean-Frederic wrote: On Tue, 2007-02-20 at 15:14 +0200, Issac Goldstand wrote: I'm working on a protocol module for Apache 2.2 and ran into the lack of UDP support in httpd. I'd like to try and remedy the situation in a manner best suited for merging to trunk + backporting where possible. I

Re: Questions on configuring Apache Server

2007-02-27 Thread Issac Goldstand
It sounds like you want to write a pair of filters. There are several examples of writing them in C, and a more detailed tutorial with background at the mod_perl website http://perl.apache.org/docs/2.0/user/handlers/filters.html Issac Erica Zhang wrote: Hi, Thanks. Well, my idea is want

Re: Questions on configuring Apache Server

2007-02-27 Thread Issac Goldstand
It sounds like you want to write a pair of filters. There are several examples of writing them in C, and a more detailed tutorial with background at the mod_perl website http://perl.apache.org/docs/2.0/user/handlers/filters.html Erica Zhang wrote: Hi, Thanks. Well, my idea is want to

Re: [mp2] aborting a file upload

2007-03-08 Thread Issac Goldstand
I'm not positive, but I think it's dangerous as it can screw up pipelined requests - that's why discard_request_body exists. I've cc-ed [EMAIL PROTECTED] as all the smart HTTP people hang out there :-) and maybe one of them can either confirm or correct that statement. Issac Matt Williamson

Re: server side includes

2007-04-09 Thread Issac Goldstand
You'd probably just use output filters to parse the output stream and add content according to what you find... I don't have a C example, but do have a Perl example (string parsing is just s much more trivial with Perl than C) at

Re: server side includes

2007-04-10 Thread Issac Goldstand
see any perfect way to avoid the big common problems, though; you always have to know what you're aiming the filters at and work accordingly... Issac Nick Kew wrote: On Tue, 10 Apr 2007 09:20:22 +0300 Issac Goldstand [EMAIL PROTECTED] wrote: $buf = ${$f-ctx}{leftover}.$buf if defined(${$f-ctx

mod_filter not merging config directives which reset the chain properly

2007-04-22 Thread Issac Goldstand
mod_filter doesn't handle FilterChain =... or FilterChain ! properly when merging configs. Assume you have a setup like this: VirtualHost ... FilterProvider a ... FilterProvider b ... FilterProvider c ... FilterChain a b Location /foo FilterChain =c /Location Location /bar FilterChain !

Re: Fixed: Truncated uploads in mod_perl 1 from FF2.0/Win

2007-04-22 Thread Issac Goldstand
I just noticed that Stas actually did this in the latest 1.x branch, but it's not in 2.x. I'll modify his instructions and add to trunk. Issac Issac Goldstand wrote: Following up on this, I'd like to take mod_perl's RELEASE file, make it fit our needs properly (I'll want people's input

[RELEASE CANDIDATE] libapreq 1.34-RC1

2007-04-23 Thread Issac Goldstand
The apreq developers are planning a maintenance release of libapreq1. This version primarily addresses an issue noted with FireFox 2.0 truncating file uploads in SSL mode. Please give the tarball at http://people.apache.org/~issac/libapreq-1.34-RC1.tar.gz a try and report

[RELEASE CANDIDATE] libapreq 1.34-RC2

2007-04-27 Thread Issac Goldstand
The apreq developers are planning a maintenance release of libapreq1. This version primarily addresses an issue noted with FireFox 2.0 truncating file uploads in SSL mode. Please give the tarball at http://people.apache.org/~issac/libapreq-1.34-RC2.tar.gz a try and report

Re: AW: Windows Vista support?

2007-05-02 Thread Issac Goldstand
I can run it in a command prompt I installed the latest 2.2.4-ssl on Vista business. Log file attached in a seperate email to wrowe. The following 2 command windows popped up for service install and service start: Installing the Apache2 service (OS 5)Access is denied. : Failed to open the

[RELEASE CANDIDATE] libapreq 1.34-RC3

2007-05-30 Thread Issac Goldstand
The apreq developers are planning a maintenance release of libapreq1. This version primarily addresses an issue noted with FireFox 2.0 truncating file uploads in SSL mode. Additionally, the memory allocation algorithm for multipart requests has been improved. Please give the tarball at

Re: Basic query regarding client-server communication with browser setting HTTP 1.0/1.1

2007-05-31 Thread Issac Goldstand
On May 30, 2007, at 4:18 AM, Issac Goldstand wrote: It will either set it, or rely on the socket close. When I say socket close, I mean that once the response is complete it closes the socket - that's the only way the client can know the response

[Slightly OT] Re: httpd x64 windows binaries

2007-06-18 Thread Issac Goldstand
You know, I often think of offering this from my own consulting company; but I often wonder what exactly it entails... It worries me that I'd be inviting myself to get sued for a bug that already e4xists in Apache, whether or not I'm able to get it subsequently fit. Would it be asking too much

Re: [RELEASE CANDIDATE] libapreq 1.34-RC3

2007-06-21 Thread Issac Goldstand
We're still waiting on a couple of PMC votes to roll. If anyone's got time to make test and vote on this, it'd be great. Issac Issac Goldstand wrote: The apreq developers are planning a maintenance release of libapreq1. This version primarily addresses an issue noted with FireFox 2.0

Re: Testing frameworks [was: mod_atom]

2007-06-27 Thread Issac Goldstand
Paul, do you know offhand what the difference is between the perl-framework, and perl.apache.org's Apache::Test framework? I'm familiar with the latter, and have found it to be an amazing tool for testing Apache modules written in all languages (and web applications of any sort running on

Re: Testing frameworks [was: mod_atom]

2007-06-27 Thread Issac Goldstand
Garrett Rooney wrote: On 6/27/07, Issac Goldstand [EMAIL PROTECTED] wrote: Paul, do you know offhand what the difference is between the perl-framework, and perl.apache.org's Apache::Test framework? I'm familiar with the latter, and have found it to be an amazing tool for testing Apache

Re: Building with Visual Studio 2005

2007-08-10 Thread Issac Goldstand
AFAIK it should be fixed. I know it's in the latest win32 apxs already (which is not part of standard win32 httpd release), so I imagine it should be in 2.2.5 too Issac Jorge Schrauwen wrote: It is a know problem... I'm not 100% but I though wrowe fixed it for 2.2.5... so wait after the

Re: Apachelounge problems

2007-08-18 Thread Issac Goldstand
Steffen, I really don't see anything threatening by what Bill said. On the contrary, he very openly said that there's nothing illegal about releasing an RC; the way I read it, the potential problems are coming from endusers who might use a broken RC, fsck up their systems and go hunting (with a

Re: Goodbye

2007-08-19 Thread Issac Goldstand
Jim Jagielski wrote: Steffen wrote: The admonishment not to use the feather or the Apache name resembles the behavior of the very worst big-software corporations - and a reminder that ASF is after all ... a corporation registered in Delaware, United States... - not a fellowship of web

Revisiting UDP support (for trunk)

2007-09-02 Thread Issac Goldstand
Hi all, I've been quietly hacking away at getting UDP support working with trunk (prefork/unix only, for starters). While I had a decent amount of success, I eventually got stuck: my original naive plan had been to poll, recvfrom (to get peer address), dup the socket, connect the dup-ed

Re: Revisiting UDP support (for trunk)

2007-09-02 Thread Issac Goldstand
letting children muck with the listeners... Issac Issac Goldstand wrote: Hi all, I've been quietly hacking away at getting UDP support working with trunk (prefork/unix only, for starters). While I had a decent amount of success, I eventually got stuck: my original naive plan had been

[patch] experimental UDP support in httpd-prefork/apr/apr-util trunk

2007-09-05 Thread Issac Goldstand
After taking my own advice on Sunday, I reworked everything I'd done for UDP support and focused on allowing the core I/O filters to work with non-connected sockets. I'm happy to report that I've come up with a working prototype for prefork that fully supports UDP and doesn't require substantial

Re: [VOTE] Apache 2.2.6, 2.0.61 and 1.3.39 release candidate tarballs for review

2007-09-07 Thread Issac Goldstand
it, but if someone wants to spoonfeed me instructions on how to make it crash, I'd be happy to take a look (or at least post a backtrace, if I don't have time to investigate myself) Issac Issac Goldstand wrote: I'll try it as soon as it shows up. William A. Rowe, Jr. wrote: Issac Goldstand

Re: [VOTE] Apache 2.2.6, 2.0.61 and 1.3.39 release candidate tarballs for review

2007-09-07 Thread Issac Goldstand
I'll try it as soon as it shows up. William A. Rowe, Jr. wrote: Issac Goldstand wrote: Uh. Maybe I've lost it, but where's the source for apr-iconv in http://httpd.apache.org/dev/dist/httpd-2.2.6-win32-src.zip? All I get is an .rc file and a couple of .deps and .maks I just pulled an OH

Re: [VOTE] Apache 2.2.6, 2.0.61 and 1.3.39 release candidate tarballs for review

2007-09-07 Thread Issac Goldstand
And Jorge, yeah. I was wondering if I was just getting a really really oddly maimed ZIP :-) William A. Rowe, Jr. wrote: Issac Goldstand wrote: Uh. Maybe I've lost it, but where's the source for apr-iconv in http://httpd.apache.org/dev/dist/httpd-2.2.6-win32-src.zip? All I get is an .rc

Re: [VOTE] Apache 2.2.6, 2.0.61 and 1.3.39 release candidate tarballs for review

2007-09-07 Thread Issac Goldstand
Uh. Maybe I've lost it, but where's the source for apr-iconv in http://httpd.apache.org/dev/dist/httpd-2.2.6-win32-src.zip? All I get is an .rc file and a couple of .deps and .maks Issac

Re: UDP support in mod_perl2/apache

2007-11-01 Thread Issac Goldstand
I put out a patchset a few months ago to support UDP in trunk and 2.2.x branches of httpd (for a mod_dns protocol module that we're currently in the process of releasing to the public). The patchset only works for the unix flavor of APR and the prefork MPM at the moment (I'm sure if it gets

Re: UDP support in mod_perl2/apache

2007-11-01 Thread Issac Goldstand
[removed modperl cc] +1 That's why the original patchset was prepared against trunk. The backport in my previous mail is more for getting feedback from early-adopters... Issac William A. Rowe, Jr. wrote: Issac Goldstand wrote: Nice. A cursory look appears to match what I have. I also

Re: 2.09 1.34

2007-11-10 Thread Issac Goldstand
Joe Schaefer wrote: Issac Goldstand [EMAIL PROTECTED] writes: I'm giving up looking for records on who started RM-ing 2.09 (or if it was started), but if noone answers, I'll tag-and-roll 2.09 on Monday, It might be wiser to scrap the 2.09 branch and start a 2.10 release branch. There's

Re: UDP support in mod_perl2/apache

2007-11-14 Thread Issac Goldstand
I just realized that there was a typo in the patchset - it applies cleanly against httpd-2.2.6, but there's a line that shouldn't be there: srclib/apr/network_io/unix/sendrecv.c line 118: from-salen = sizeof(from-sa); Remove this and it should build cleanly. Issac Rolf Banting wrote: OK

Re: Amsterdam sandbox

2007-11-14 Thread Issac Goldstand
Graham Leggett wrote: On Wed, November 14, 2007 10:35 am, Paul Querna wrote: That you currently need a patch to serf/trunk to add the pluggable event loop. Hopefully we can fix that out tomorrow by adding it or some derivative to serf trunk. This could potentially become a

[PROPOSAL] Adoption of mod_dns to httpd?

2007-11-14 Thread Issac Goldstand
I'd like to offer up mod_dns (http://www.beamartyr.net/mod-dns-1.02.tar.bz2) for inclusion in the httpd project (either as a mod_ftp-like subproject, or as module with the standard distribution - whatever people prefer). Can people vote for what they're most comfortable with? [ ] Immediate

Re: [PROPOSAL] Adoption of mod_dns to httpd?

2007-11-14 Thread Issac Goldstand
Nick Kew wrote: On Wed, 14 Nov 2007 09:06:51 -0500 Issac Goldstand [EMAIL PROTECTED] wrote: I'd like to offer up mod_dns (http://www.beamartyr.net/mod-dns-1.02.tar.bz2) for inclusion in the httpd project (either as a mod_ftp-like subproject, or as module with the standard distribution

Re: [PROPOSAL] Adoption of mod_dns to httpd?

2007-11-15 Thread Issac Goldstand
Guenter Knauf wrote: Hi Issac, I'd like to offer up mod_dns (http://www.beamartyr.net/mod-dns-1.02.tar.bz2) for inclusion in the httpd project (either as a mod_ftp-like subproject, or as module with the standard distribution - whatever people prefer). Can people vote for what they're

Re: UDP support in mod_perl2/apache

2007-11-20 Thread Issac Goldstand
, but that's still a while off. Issac Rolf Banting wrote: On 11/14/07, Issac Goldstand [EMAIL PROTECTED] wrote: I just realized that there was a typo in the patchset - it applies cleanly against httpd-2.2.6, but there's a line that shouldn't be there: srclib/apr/network_io/unix/sendrecv.c line 118

Re: SNI support for mod_ssl

2007-12-18 Thread Issac Goldstand
+1 (for what it's worth from a non-committer :)) Guenter Knauf wrote: Hi, I haven't reviewed the patch, but from a functionality perspective, I'd love to see SNI in Apache, although IMHO it's something that will need to be backported to far more browsers before it can be considered useful

Re: [RELEASE CANDIDATE] libapreq2 2.08-RC3

2006-07-11 Thread Issac Goldstand
It didn't unpack on win32 using 7-zip either... But GNU tar (the native binary from the unixutils project on sf, not under cygwin) worked ok (except for symbolic links, but that shouldn't be so bad). I wanted to test the build, since Randy said he couldn't, but ran into troubles compiling

Re: newbie: apr-iconv questions

2006-07-23 Thread Issac Goldstand
implementation, if it exists. Issac Issac Goldstand wrote: Hi list, I'm working on a module for httpd 2.2 and want to include iconv support. I had 2 questions on the subject: 1) On platforms where APU_HAVE_ICONV what is the recommended practice for using iconv? System's or APR's (with pool

Re: [Jost.Krieger+smokeback@ruhr-uni-bochum.de: FAIL libapreq-1.0 sun4-solaris 2.8]

2002-11-07 Thread Issac Goldstand
It looks like the APACHE_SRC wasn't correctly specified - not liek a platform-specific bug... Am I missing something? Issac - Original Message - From: Jim Winstead [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 07, 2002 10:30 PM Subject: [[EMAIL PROTECTED]: FAIL

Re: Windows Server 2008 Application Compatibility Lab Invitation

2008-01-16 Thread Issac Goldstand
This is probably all the way at the bottom of your priority list, but I figure it can't hurt to mention - what about a decent command line build solution; IIRC, one of the (very minor) reasons we're still with VC6 is the ability to create a Makefile, which recent VS suites no longer

Re: More than one auth module

2008-01-16 Thread Issac Goldstand
You want to make your module an authz module if it determines access control... Issac César Leonardo Blum Silveira wrote: Hello all, I would like to know if there is a way to make requests pass more than one authentication phase. Basically, I need to authenticate users using mod_spnego for

mod_dns

2008-01-27 Thread Issac Goldstand
AFAIK, the IP clearance was received and processed. I sense that I'll soon have time to spend on the project (and the damned UDP support, but I have an idea for that), but to the best of my knowledge, the project was never imported into SVN (nor do I have commit access to where it will be) Can

Re: store_headers in memcache and diskcache

2008-02-09 Thread Issac Goldstand
josh rotenberg wrote: Seems like switching the names around a la mod_proxy would sound better: mod_cache_disk, mod_cache_mem, mod_cache_memcached, etc. Ack. Pain in the ass But the man speaks sense. Really not so happy with doing it now - even as a major bump... My personal

ping on mod_dns

2008-02-09 Thread Issac Goldstand
Any volunteers to import mod_dns so I can eventually start hacking at it again (topic came up at work recently and I have a couple of feature ideas that I'd like to work on, but really don't want to have to work in my old svn + port changes to asf svn too)? AFAIK, we finished with the red tape

Re: PATCH -- make the cache modules part of 'all'.

2008-02-09 Thread Issac Goldstand
Justin Erenkrantz wrote: On Feb 9, 2008 7:37 PM, Dirk-Willem van Gulik [EMAIL PROTECTED] wrote: Unless you swap in some third party (memcached, distcache, commercial netapp) module. But, if we want a 'good' out-of-the-box experience, then it sounds like we should enable

Re: board report due tomorrow

2008-02-18 Thread Issac Goldstand
Server 2.2.8, 2.0.63, and 1.3.41. Added two PMC members: Guenter Knauf and Tony Stevenson Added three committers: Davi Arnaut, Issac Goldstand (httpd), and Niklas Edmundsson (httpd), Participated in the IETF httpbis WG, where Roy has submitted two sets of drafts for a new

Re: board report due tomorrow

2008-02-18 Thread Issac Goldstand
Nick Kew wrote: On 18 Feb 2008, at 08:29, Issac Goldstand wrote: I think we also adopted mod_dns at Apachecon, That'll be *cough* _provisionally_ adopted. Decisions are made on-list. Remind me where to find the thread. I hope this link works, as I haven't used Markmail's new UI very

Re: ping on mod_dns

2008-02-18 Thread Issac Goldstand
Roy T. Fielding wrote: On Feb 9, 2008, at 4:21 PM, Issac Goldstand wrote: Any volunteers to import mod_dns so I can eventually start hacking at it again (topic came up at work recently and I have a couple of feature ideas that I'd like to work on, but really don't want to have to work in my

Re: ping on mod_dns

2008-02-18 Thread Issac Goldstand
Jorge Schrauwen wrote: If the mod_dns mentioned before is different from the code... may I sugest mod_named? since a lot of people would be famileir with a name like htat. True, but that would break naming conventions: mod_smtp mod_ftp (mod_proxy_ajp, mod_proxy_http, mod_proxy_ftp) and

Re: board report due tomorrow

2008-02-18 Thread Issac Goldstand
Dirk-Willem van Gulik wrote: On Feb 18, 2008, at 7:57 PM, Roy T. Fielding wrote: On Feb 18, 2008, at 4:32 AM, Issac Goldstand wrote: Nick Kew wrote: On 18 Feb 2008, at 08:29, Issac Goldstand wrote: I think we also adopted mod_dns at Apachecon, That'll be *cough* _provisionally_ adopted

Re: board report due tomorrow

2008-02-18 Thread Issac Goldstand
Jim Jagielski wrote: On Feb 18, 2008, at 3:09 PM, Dirk-Willem van Gulik wrote: On Feb 18, 2008, at 7:57 PM, Roy T. Fielding wrote: On Feb 18, 2008, at 4:32 AM, Issac Goldstand wrote: Nick Kew wrote: On 18 Feb 2008, at 08:29, Issac Goldstand wrote: I think we also adopted mod_dns

Re: ping on mod_dns

2008-02-19 Thread Issac Goldstand
William A. Rowe, Jr. wrote: Mads Toftum wrote: On Tue, Feb 19, 2008 at 09:30:30AM -0500, Jim Jagielski wrote: I propose mod_domain to match the IANA port number assignment. Seems more confusing than mod_named. I didn't care for mod_named (we haven't been suffixing the 'd'aemon most of

Re: apxs on Win32?

2008-02-21 Thread Issac Goldstand
Randy Kobes wrote: On Thu, 21 Feb 2008, Guenter Knauf wrote: Hi (Bill?), another dev just asked me privately about apxs for Win32 does this meanwhile work on Win32? And if so can we perhaps ship it with future distros? I think that would make sense since the include and lib dir is already

  1   2   3   4   >