Commit c5cf2475 authored by Andreas Jung's avatar Andreas Jung

*** empty log message ***

parent 24e78e69
......@@ -5,7 +5,7 @@
# All Rights Reserved.
#
RCS_ID = '$Id: ftp_server.py,v 1.17 2001/05/01 11:44:48 andreas Exp $'
RCS_ID = '$Id: ftp_server.py,v 1.18 2001/07/09 15:13:06 andreas Exp $'
# An extensible, configurable, asynchronous FTP server.
#
......@@ -882,6 +882,9 @@ class xmit_channel (asynchat.async_chat):
# TODO: there's a better way to do this. we need to be able to
# put 'events' in the producer fifo. to do this cleanly we need
# to reposition the 'producer' fifo as an 'event' fifo.
# dummy function to suppress warnings caused by some FTP clients
def handle_connect(self): pass
def close (self):
c = self.channel
......
......@@ -5,7 +5,7 @@
# All Rights Reserved.
#
RCS_ID = '$Id: ftp_server.py,v 1.17 2001/05/01 11:44:48 andreas Exp $'
RCS_ID = '$Id: ftp_server.py,v 1.18 2001/07/09 15:13:06 andreas Exp $'
# An extensible, configurable, asynchronous FTP server.
#
......@@ -882,6 +882,9 @@ class xmit_channel (asynchat.async_chat):
# TODO: there's a better way to do this. we need to be able to
# put 'events' in the producer fifo. to do this cleanly we need
# to reposition the 'producer' fifo as an 'event' fifo.
# dummy function to suppress warnings caused by some FTP clients
def handle_connect(self): pass
def close (self):
c = self.channel
......
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