Changes between Version 23 and Version 24 of FileCompression
- Timestamp:
- Dec 19, 2016, 1:44:49 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FileCompression
v23 v24 6 6 7 7 The BOINC client can handle compressed downloads 8 using both the mod_gzip and mod_def aultmechanisms provided by Apache.8 using both the mod_gzip and mod_deflate mechanisms provided by Apache. 9 9 However, resumption of interrupted downloads doesn't work 10 10 with either of these methods, so we don't recommend using them. … … 89 89 Also, please note that boinc_zip relies on some BOINC functions that you will need 90 90 (and will most likely be in your app already since they are handy) -- 91 namely `boinc/lib/filesys. C` and `boinc/lib/util.C`.91 namely `boinc/lib/filesys.cpp` and `boinc/lib/util.cpp`. 92 92 93 93 ==== Using ==== #boinc-zip-using … … 148 148 There is a `ziptest` Project for Windows provided to experiment, 149 149 which can also be run (the "ziptest.cpp") on Unix & Mac to experiment 150 with how `boinc_zip` work (just g++ with the `boinc/lib/filesys. C` & `util.C` as described above).150 with how `boinc_zip` work (just g++ with the `boinc/lib/filesys.cpp` & `util.cpp` as described above). 151 151 152 152 === Using gzip (zlib) === #gzip