Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3940

Show
Ignore:
Timestamp:
09/20/08 21:38:26 (2 months ago)
Author:
lmartin92
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/lmartin/ftp/tango/net/ftp/FtpClient.d

    r3847 r3940  
    247247    char[] currFile_ = ""; 
    248248    SocketConduit dataSocket_; 
    249     TimeSpan timeout = TimeSpan.millis(5000); 
     249    TimeSpan timeout_ = TimeSpan.millis(5000); 
     250 
     251    public TimeSpan timeout() { 
     252            return timeout_; 
     253        } 
     254 
     255    public TimeSpan timeout(TimeSpan t) { 
     256        timeout_ = t; 
     257        } 
     258 
     259    public TimeSpan shutdownTime() { 
     260            return timeout_ + timeout_; 
     261    } 
    250262 
    251263    public FtpFeature[] supportedFeatures() {