Overview
| Comment: | OFGZIPStream: Add missing documentation |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.90 |
| Files: | files | file ages | folders |
| SHA3-256: |
1dd4dd46305709e7839377df0bed9511 |
| User & Date: | js on 2017-08-05 17:14:16 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-06
| ||
| 20:31 | OFZIPArchive: Fix uncompressed + data descriptor (check-in: aff4d1cf35 user: js tags: 0.90) | |
|
2017-08-05
| ||
| 17:14 | OFGZIPStream: Add missing documentation (check-in: 1dd4dd4630 user: js tags: 0.90) | |
| 15:51 | OFTarArchiveEntry: Fix prefix handling for ustar (check-in: 9136eac5e0 user: js tags: 0.90) | |
Changes
Modified src/OFGZIPStream.h from [9ece715a6e] to [28a3137a76].
| ︙ | |||
17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + + + + + + |
#import "OFStream.h"
#import "OFDate.h"
@class OFInflateStream;
OF_ASSUME_NONNULL_BEGIN
/*!
* @class OFGZIPStream OFGZIPStream.h ObjFW/OFGZIPStream.h
*
* @brief A class that handles GZIP compression and decompression transparently
* for an underlying stream.
*/
@interface OFGZIPStream: OFStream
{
OFStream *_stream;
OFInflateStream *_inflateStream;
enum of_gzip_stream_state {
OF_GZIP_STREAM_ID1,
OF_GZIP_STREAM_ID2,
|
| ︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | + + + + + + + + + + + + + + + | size_t _bytesRead; uint8_t _buffer[4]; OFDate *_modificationDate; uint16_t _extraLength; uint32_t _CRC32, _uncompressedSize; } /*! * @brief Creates a new OFGZIPStream with the specified underlying stream. * * @param stream The underlying stream for the OFGZIPStream * @return A new, autoreleased OFGZIPStream */ + (instancetype)streamWithStream: (OFStream *)stream; - init OF_UNAVAILABLE; /*! * @brief Initializes an already allocated OFGZIPStream with the specified * underlying stream. * * @param stream The underlying stream for the OFGZIPStream * @return An initialized OFGZIPStream */ - initWithStream: (OFStream *)stream OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END |