[ZCM] [ZC] 661/ 2 Wontfix "medusa in solaris reusing addr"
"Collector: Zope Bugs, Features, and Patches ..." <[email protected]>
| Newsgroups | gmane.comp.web.zope.devel.collector-monitor |
|---|---|
| Message-ID | <[email protected]> |
Issue #661 Update (Wontfix) "medusa in solaris reusing addr"
Status Wontfix, ZServer/bug medium
To followup, visit:
http://www.zope.org/Collectors/Zope/661
==============================================================
= Wontfix - Entry #2 by tseaver on Dec 19, 2006 2:46 pm
Status: Pending => Wontfix
This bug is against a version of Zope too old for maintenance, and
on a platform which none of the core developers work with.
Please submit a new bug if you can replicate the problem on a more
modern Zope (2.8+), and without requiring Solaris.
________________________________________
= Request - Entry #1 by Anonymous User on Nov 5, 2002 4:48 am
I work with zope in solaris and when i try to make ftp-data to the same port ftp client hangs, i think the problem is that ftp-data sockets from the server to the client do not set the reuse_addr option correctly.
I changed this in the create_socket method of asyncore.py.
This appear to fix the bug.
def create_socket (self, family, type):
self.family_and_type = family, type
self.socket = socket.socket (family, type)
#changed by pbenitez, no reusa las direcciones
self.set_reuse_addr()
#end changed
self.socket.setblocking(0)
self._fileno = self.socket.fileno()
self.add_channel()
==============================================================