TwinFeats
SFTP Revision History
- August 1, 1998
- Initial release
- August 12, 1998
- Discovered 1st bug - When transferring files, the file reader thread would break files into 4k packets and
put them on a queue as fast as it could. Another thread would then send the packets over the net. On slower connections
when transferring a lot of data the file reader thread could exhaust all available JVM memory while the sender
thread just could not keep up. The file reader thread now will pause putting 4k packets on the send queue when
the send queue reaches 4 meg of data and resume when it gets down to 20k.
- Discovered another very minor bug when transferring files over about 20 meg. The progress display would go
negative! This has been fixed, maximum file size you can transfer is now about 2 gig.
- Made some enhancements to the TFTreeView classes that display the file and directory lists. You can now do
range selection by clicking on an item then holding shift and clicking on another item. All items in between will
get selected. NOTE this only works when selecting items at the same depth (i.e. subdirectory).