| Commit message (Expand) | Author | Age | Files | Lines |
* | reader: introduce struct archive_read_filter_vtable | Emil Velikov | 2021-10-23 | 1 | -9/+13 |
* | reader: remove unused archive_read_filter callbacks | Emil Velikov | 2021-10-23 | 1 | -2/+0 |
* | reader: track read_filter "can_skip" with a flag | Emil Velikov | 2021-10-23 | 1 | -3/+3 |
* | reader: track read_filter "can_seek" with a flag | Emil Velikov | 2021-10-23 | 1 | -2/+2 |
* | reader: reuse client_{open,close}_proxy more | Emil Velikov | 2021-10-23 | 1 | -15/+13 |
* | archive: remove ::compression_{code,name} | Emil Velikov | 2021-10-23 | 1 | -2/+0 |
* | reader: transform get_bidder into register_bidder | Emil Velikov | 2021-10-23 | 1 | -3/+19 |
* | reader: introduce archive_read_filter_bidder::vtable | Emil Velikov | 2021-10-23 | 1 | -15/+16 |
* | reader: remove the return type of archive_read_filter_bidder_vtable::free | Emil Velikov | 2021-10-23 | 1 | -3/+1 |
* | archive: constify the archive::vtable dispatch | Emil Velikov | 2021-10-23 | 1 | -22/+13 |
* | archive_read.c: silence UBSan warning about undefined behavior | Kamil Rytarowski | 2020-02-25 | 1 | -8/+9 |
* | archive_read.c: remove unnecessary comparsion (iindex is unsigned int) | Martin Matuska | 2020-01-17 | 1 | -1/+1 |
* | archive_read: fix handling of sparse files | Dmitry Torokhov | 2019-06-26 | 1 | -1/+2 |
* | support reading metadata from compressed files | Mike Frysinger | 2019-04-21 | 1 | -0/+9 |
* | Be consistent about la_ssize_t and ssize_t (#1010). | Joerg Sonnenberger | 2018-07-19 | 1 | -1/+1 |
* | Fix -Werror=implicit-fallthrough= for GCC 7. | Wei-Cheng Pan | 2017-10-31 | 1 | -1/+2 |
* | Match archive.h for la_int64_t vs int64_t | Joerg Sonnenberger | 2017-10-07 | 1 | -3/+4 |
* | Avoid memcpy if length is zero, the source can be NULL in this case. | Joerg Sonnenberger | 2017-04-29 | 1 | -1/+2 |
* | Spelling fixes (#846) | Graham Percival | 2016-12-20 | 1 | -1/+1 |
* | Close filters before freeing | Martin Matuska | 2016-12-07 | 1 | -6/+8 |
* | Clarify the limit on number of filters | Tim Kientzle | 2016-02-21 | 1 | -2/+6 |
* | Invert logic of ternary pointer checks | Brad King | 2015-10-26 | 1 | -1/+1 |
* | Whitespace cleanup after 41965bf | Tim Kientzle | 2015-07-05 | 1 | -9/+4 |
* | Add support for archive_read_data() for read_disk archives. | Paul Harris | 2015-06-30 | 1 | -7/+25 |
* | Remove unnecessary conditional | Tim Kientzle | 2015-06-28 | 1 | -3/+2 |
* | Strings: fix an incorrect name of a function | Colin Percival | 2015-06-01 | 1 | -1/+1 |
* | Do not request 0-length skips; sanity-check return. | Alexey Spiridonov | 2015-02-01 | 1 | -2/+4 |
* | Add a check to archive_read_filter_consume to reject any | Tim Kientzle | 2015-02-01 | 1 | -0/+2 |
* | Fix a potential crash issue discovered by Alexander Cherepanov: | Tim Kientzle | 2015-01-10 | 1 | -2/+5 |
* | Add new APIs that pass passphrases for reading and writing | Michihiro NAKAJIMA | 2014-09-14 | 1 | -2/+16 |
* | Properly set a error message when a client seeker callback is not | Michihiro NAKAJIMA | 2014-08-03 | 1 | -1/+4 |
* | Fix garbag return value which Clang Static Analyser pointed out. | Michihiro NAKAJIMA | 2014-07-06 | 1 | -1/+1 |
* | Out-of-range seeks should fail, not truncate the seek. | Tim Kientzle | 2013-12-26 | 1 | -4/+3 |
* | Style: Use 'int' not 'char' for status return types. | Tim Kientzle | 2013-12-19 | 1 | -2/+2 |
* | Better archive_read_has_encrypted_entries function | Konrad Kleine | 2013-10-09 | 1 | -5/+33 |
* | Detect encrypted archive entries (ZIP, RAR, 7Zip) | Konrad Kleine | 2013-09-17 | 1 | -1/+30 |
* | Give formats/filters way to know data amount requested from archive_read_data(). | Andres Mejia | 2013-01-25 | 1 | -0/+6 |
* | Style: Whitespace around '=' | Tim Kientzle | 2012-12-24 | 1 | -1/+1 |
* | Separate code to set formats/filters into different source files. | Andres Mejia | 2012-12-09 | 1 | -246/+11 |
* | Implement functions to manually set the format and filters used. | Andres Mejia | 2012-12-07 | 1 | -15/+260 |
* | Fix style and Make source files be somewhat readable. | Michihiro NAKAJIMA | 2012-10-10 | 1 | -82/+86 |
* | Replace deprecated macro ARCHIVE_COMPRESSION_* by ARCHIVE_FILTER_*. | Michihiro NAKAJIMA | 2012-10-09 | 1 | -1/+1 |
* | Tweak indent. | Michihiro NAKAJIMA | 2012-10-06 | 1 | -84/+83 |
* | Implement function used to seek within data blocks. | Andres Mejia | 2012-09-27 | 1 | -1/+126 |
* | Fix a possibility of memory leaks when realloc fails. | Michihiro NAKAJIMA | 2012-09-18 | 1 | -4/+6 |
* | Implement support for reading from multiple data objects as one large stream. | Andres Mejia | 2012-03-25 | 1 | -9/+162 |
* | Enable C4254,C4295,C4514 and C4702 on MSVC. | Michihiro NAKAJIMA | 2012-02-25 | 1 | -1/+0 |
* | On Visual Studio, Enable Warning 4244: 'conversion' conversion from 'type1' | Michihiro NAKAJIMA | 2012-02-19 | 1 | -5/+5 |
* | Fix build failure in aggressive warnings on FreeBSD/amd64. | Michihiro NAKAJIMA | 2012-02-14 | 1 | -1/+1 |
* | Remove a few stray references to ARCHIVE_API_VERSION, which was | Tim Kientzle | 2011-12-22 | 1 | -16/+0 |