|
/
Zope
/
Apsis
/
Pound Mailing List
/
Archive
/
2005
/
2005-08
/
Re: [Pound Mailing List] Pound and Gsoap
[
Pound and Gsoap / Gaetan OFFREDO ... ]
[
ANNOUNCE: Pound - reverse proxy and load balancer ... ]
Re: [Pound Mailing List] Pound and Gsoap
Robert Segall <roseg(at)apsis.ch> |
2005-08-26 13:22:26 |
[ FULL ]
|
Many thanks for your excellent and detailed analysis. This is very
helpful.
I suspect you discovered a serious problem in the Pound code, most
likely due to some changes in the poll() semantics. To test please
modify the following two lines in http.c (all line numbers are as per
version 1.9):
line 380: if(p.revents == POLLIN || p.revents == POLLPRI)
should read: if((p.revents & POLLIN) || (p.revents & POLLPRI))
line 386: if(p.revents == POLLOUT)
should read: if(p.revents & POLLOUT)
Please try this - I believe it should fix the problem you describe (and
a few others as well...). If you can confirm that this works correctly
we'll make a 1.9.1 release for it - it's important enough.
Many thanks for your work.[...]
|
|
|
Re: [Pound Mailing List] Pound and Gsoap
Gaetan OFFREDO <gaetan.offredo(at)alcatel.fr> |
2005-08-29 09:44:06 |
[ FULL ]
|
On Fri August 26 2005 13:22, Robert Segall wrote:[...]
Sorry for the delay ....
I tried your modifications this morning ... and it works !
Thanks for your quick answer. I am waiting for the next release ;-)
Gaëtan
|
|
|
Re: [Pound Mailing List] max size for error pages?
Sascha Ottolski <sascha.ottolski(at)gallileus.de> |
2005-08-31 14:47:14 |
[ FULL ]
|
Am Donnerstag, 7. Juli 2005 17:39 schrieb Robert Segall:[...]
Hi Robert,
just installed 1.9.1, and that little problem still seems to exist. Do you
have a hint what a patch would look like to increase the limit?
Thanks, Sascha
[...]
|
|
|
Re: [Pound Mailing List] max size for error pages?
Robert Segall <roseg(at)apsis.ch> |
2005-08-31 16:06:18 |
[ FULL ]
|
On Wed, 31 Aug 2005 14:47:14 +0200 Sascha Ottolski
<sascha.ottolski(at)gallileus.de> wrote:
[...]
pound.h, line 306:
#define MAXBUF 2048
Change the "2048" to whatever you like and recompile.[...]
|
|
|
Re: [Pound Mailing List] max size for error pages?
Sascha Ottolski <sascha.ottolski(at)gallileus.de> |
2005-08-31 17:12:36 |
[ FULL ]
|
Am Mittwoch, 31. August 2005 16:06 schrieb Robert Segall:[...]
great, thanks a lot, Robert!
Cheers,
Sascha
[...]
|
|
|
|