Commit 273ba24d authored by Andreas Jung's avatar Andreas Jung

- Collector #1511: made IPCServer show up in the Control Panel under "Network Services"

parent 51bc7cdf
......@@ -38,6 +38,7 @@ Zope Changes
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
......
......@@ -37,6 +37,8 @@ class BaseICPServer(asyncore.dispatcher):
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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment