Search found 3 matches
- Mon Mar 31, 2014 8:24 pm
- Forum: Support - RCF
- Topic: RCF::FileDownload with large files (> 2 Gb)
- Replies: 5
- Views: 20266
Re: RCF::FileDownload with large files (> 2 Gb)
I did some more googling, and it does appear that the actual bug is in the standard library shipped with Visual Studio. With the patch I was able to download a video (> 2GB, our internal format) and played it back from start to end. With the patch, the line mBytesTransferred = pos1 - pos0; is change...
- Fri Mar 28, 2014 8:09 pm
- Forum: Support - RCF
- Topic: RCF::FileDownload with large files (> 2 Gb)
- Replies: 5
- Views: 20266
Re: RCF::FileDownload with large files (> 2 Gb)
Thanks for looking into this. We're primarily using the 64 bit compiler. Here are the diffs generated from our local changes (we're still using RCF 2.0.0.2673): FileIoThreadPool.cpp: 252d251 < boost::uint64_t pos0 = mFoutPtr->tellp(); 254,258c253,254 < boost::uint64_t pos1 = mFoutPtr->tellp(); < < R...
- Wed Feb 12, 2014 8:15 pm
- Forum: Support - RCF
- Topic: RCF::FileDownload with large files (> 2 Gb)
- Replies: 5
- Views: 20266
RCF::FileDownload with large files (> 2 Gb)
Hello, We're using RCF::FileDownload to do file transfer, and it appears to work well for our purpose. However, we encounter problems when downloading large files (size > 2 Gb) on Windows (our code is in 64-bit). The symptom we're seeing is that file transfer stops when the number of bytes transferr...