> Can you update
> your copy of ThreadedAppServer.py from CVS and verify that it
> fixes the problem?
Yep, it works great, thanks.
___
Webware-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-devel
At 04:51 PM 10/18/2001 -0400, Geoff Talvola wrote:
>I've checked into CVS the changes you suggested -- I added the setsockopt
>call, moved up the initialization of self.threadCount and
>self.threadUseCounter, and removed the annoying print ".". Can you update
>your copy of ThreadedAppServer.py
I've checked into CVS the changes you suggested -- I added the setsockopt
call, moved up the initialization of self.threadCount and
self.threadUseCounter, and removed the annoying print ".". Can you update
your copy of ThreadedAppServer.py from CVS and verify that it fixes the
problem?
I can
To fix the bind error, in ThreadedAppServer.__init__:
Change:
self.mainsocket = socket.socket(socket.AF_INET,
socket.SOCK_STREAM)
To:
self.mainsocket = socket.socket(socket.AF_INET,
socket.SOCK_STREAM)
self.mainsocket.setsockopt(socket.SOL_SOCKET,socket.SO_