Changeset 3940
- Timestamp:
- 09/20/08 21:38:26 (2 months ago)
- Files:
-
- branches/lmartin/ftp/tango/net/ftp/FtpClient.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/lmartin/ftp/tango/net/ftp/FtpClient.d
r3847 r3940 247 247 char[] currFile_ = ""; 248 248 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 } 250 262 251 263 public FtpFeature[] supportedFeatures() {












