[Zope-Checkins] CVS: Zope/lib/python/ZServer - ICPServer.py:1.5.8.1

Andreas Jung andreas at andreas-jung.com
Sat Oct 30 03:43:06 EDT 2004


Update of /cvs-repository/Zope/lib/python/ZServer
In directory cvs.zope.org:/tmp/cvs-serv24987/lib/python/ZServer

Modified Files:
      Tag: Zope-2_7-branch
	ICPServer.py 
Log Message:
      - Collector #1511: made IPCServer show up in the Control Panel under "Network Services"


=== Zope/lib/python/ZServer/ICPServer.py 1.5 => 1.5.8.1 ===
--- Zope/lib/python/ZServer/ICPServer.py:1.5	Tue Mar 18 16:15:14 2003
+++ Zope/lib/python/ZServer/ICPServer.py	Sat Oct 30 03:43:06 2004
@@ -37,9 +37,12 @@
 
     def __init__ (self,ip,port):
         asyncore.dispatcher.__init__(self)
+        self.ip = ip
+        self.port = port
         self.create_socket (socket.AF_INET, socket.SOCK_DGRAM)
         self.set_reuse_addr()
         self.bind((ip,port))
+
         if ip=='':
             addr = 'any'
         else:



More information about the Zope-Checkins mailing list