Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
b7a1d7b6
Commit
b7a1d7b6
authored
Apr 22, 1999
by
Amos Latteier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a medusa bug in passive mode FTP. Bug reported by Daren Sefcik.
parent
c20e44ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ZServer/medusa/ftp_server.py
ZServer/medusa/ftp_server.py
+2
-2
lib/python/ZServer/medusa/ftp_server.py
lib/python/ZServer/medusa/ftp_server.py
+2
-2
No files found.
ZServer/medusa/ftp_server.py
View file @
b7a1d7b6
...
...
@@ -8,7 +8,7 @@
# If you are interested in using this software in a commercial context,
# or in purchasing support, please contact the author.
RCS_ID
=
'$Id: ftp_server.py,v 1.
2 1999/04/09 00:37:33
amos Exp $'
RCS_ID
=
'$Id: ftp_server.py,v 1.
3 1999/04/22 22:36:38
amos Exp $'
# An extensible, configurable, asynchronous FTP server.
#
...
...
@@ -294,7 +294,7 @@ class ftp_channel (asynchat.async_chat):
self
.
passive_acceptor
=
None
else
:
# we're still waiting for a connect to the PASV port.
cdc
=
recv_channel
(
self
,
fd
)
cdc
=
recv_channel
(
self
,
None
,
fd
)
else
:
# not in PASV mode.
ip
,
port
=
self
.
client_addr
...
...
lib/python/ZServer/medusa/ftp_server.py
View file @
b7a1d7b6
...
...
@@ -8,7 +8,7 @@
# If you are interested in using this software in a commercial context,
# or in purchasing support, please contact the author.
RCS_ID
=
'$Id: ftp_server.py,v 1.
2 1999/04/09 00:37:33
amos Exp $'
RCS_ID
=
'$Id: ftp_server.py,v 1.
3 1999/04/22 22:36:38
amos Exp $'
# An extensible, configurable, asynchronous FTP server.
#
...
...
@@ -294,7 +294,7 @@ class ftp_channel (asynchat.async_chat):
self
.
passive_acceptor
=
None
else
:
# we're still waiting for a connect to the PASV port.
cdc
=
recv_channel
(
self
,
fd
)
cdc
=
recv_channel
(
self
,
None
,
fd
)
else
:
# not in PASV mode.
ip
,
port
=
self
.
client_addr
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment