So simple!! Thanks.  This should definitely make it into the WebKit 
docs.

I think I need a good book on tcp/ip socket programming.  Any 
suggestions?


On Wednesday 13 March 2002 11:48, Terrel Shumway wrote:
> On Wed, 2002-03-13 at 12:45, Tavis Rudd wrote:
> > Jay,
> > I think Apache is doing something different. When I run this code
> > ##
> > import time
> > import socket
> > s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
> > s.bind(('localhost',8082))
> > s.listen(1024)
> > s2 = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
> > s2.bind(('10.0.0.1',8082))
> > s2.listen(1024)
> > time.sleep(35)
> > ##
>
> try this:
> -------------
> import socket
>
> ss =socket.socket(socket.AF_INET,socket.SOCK_STREAM)
> ss.bind(("",8082))
> ss.listen(1024)
> -------------

_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to