[Zope-Checkins] SVN: Zope/trunk/ - Collector #1511: made IPCServer
show up in the Control Panel under "Network Services"
Andreas Jung
andreas at andreas-jung.com
Sat Oct 30 03:43:53 EDT 2004
Log message for revision 28293:
- Collector #1511: made IPCServer show up in the Control Panel under "Network Services"
Changed:
U Zope/trunk/doc/CHANGES.txt
U Zope/trunk/lib/python/ZServer/ICPServer.py
-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt 2004-10-30 07:31:08 UTC (rev 28292)
+++ Zope/trunk/doc/CHANGES.txt 2004-10-30 07:43:53 UTC (rev 28293)
@@ -38,6 +38,7 @@
The border="0" attribute is no longer part of the HTML output except specified
otherwise.
+ - Collector #1511: made IPCServer show up in the Control Panel under "Network Services"
Zope 2.8a1
Modified: Zope/trunk/lib/python/ZServer/ICPServer.py
===================================================================
--- Zope/trunk/lib/python/ZServer/ICPServer.py 2004-10-30 07:31:08 UTC (rev 28292)
+++ Zope/trunk/lib/python/ZServer/ICPServer.py 2004-10-30 07:43:53 UTC (rev 28293)
@@ -37,6 +37,8 @@
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))
More information about the Zope-Checkins
mailing list