]> granicus.if.org Git - python/commitdiff
Merged revisions 80226 via svnmerge from
authorGiampaolo Rodolà <g.rodola@gmail.com>
Mon, 19 Apr 2010 21:56:45 +0000 (21:56 +0000)
committerGiampaolo Rodolà <g.rodola@gmail.com>
Mon, 19 Apr 2010 21:56:45 +0000 (21:56 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80226 | giampaolo.rodola | 2010-04-19 23:46:28 +0200 (lun, 19 apr 2010) | 1 line

  Fix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT commands
........

Lib/ftplib.py
Misc/NEWS

index c0cfe27d89b9c236d794920bb29441d65708a239..22decb2dbb5190a1de0469cd94008aedfbd1f384 100644 (file)
@@ -294,6 +294,8 @@ class FTP:
             resp = self.sendport(host, port)
         else:
             resp = self.sendeprt(host, port)
+        if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:
+            sock.settimeout(self.timeout)
         return sock
 
     def makepasv(self):
@@ -346,6 +348,8 @@ class FTP:
             if resp[0] != '1':
                 raise error_reply, resp
             conn, sockaddr = sock.accept()
+            if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:
+                conn.settimeout(self.timeout)
         if resp[:3] == '150':
             # this is conditional in case we received a 125
             size = parse150(resp)
index d0e465603a9c649b2aa6230cb91843bfa3ffc81b..bd4b807b2d1dd34413681c8dd33aecbfcc4358ee 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #4814: timeout parameter is now applied also for connections resulting
+  from PORT/EPRT commands.
+
 - Issue #3817: ftplib.FTP.abort() method now considers 225 a valid response
   code as stated in RFC-959 at chapter 5.4.