Overview
Comment: | \cond internal is not needed anymore. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
96469dff3b396f6026c2bb15a5dc1873 |
User & Date: | js on 2012-02-29 21:12:25 |
Other Links: | manifest | tags |
Context
2012-03-01
| ||
14:52 | Remove dead code. check-in: 0db06dfe03 user: js tags: trunk | |
2012-02-29
| ||
21:12 | \cond internal is not needed anymore. check-in: 96469dff3b user: js tags: trunk | |
2012-02-28
| ||
16:20 | Update PLATFORMS. check-in: 3b618415fb user: js tags: trunk | |
Changes
Modified src/OFAutoreleasePool.h from [859d666060] to [ed23b75b52].
︙ | ︙ | |||
35 36 37 38 39 40 41 | * \brief Adds an object to the autorelease pool at the top of the * thread-specific autorelease pool stack. * * \param object The object to add to the autorelease pool */ + (void)addObject: (id)object; | < < | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | * \brief Adds an object to the autorelease pool at the top of the * thread-specific autorelease pool stack. * * \param object The object to add to the autorelease pool */ + (void)addObject: (id)object; + (void)_releaseAll; - (void)_addObject: (id)object; /** * \brief Releases all objects in the autorelease pool. * * This does not free the memory allocated to store pointers to the objects in * the pool, so reusing the pool does not allocate any memory until the previous * number of objects is exceeded. It behaves this way to optimize loops that |
︙ | ︙ |
Modified src/OFHTTPRequest.h from [915ec7bd0b] to [62c4ad9368].
︙ | ︙ | |||
278 279 280 281 282 283 284 | #ifdef OF_HAVE_PROPERTIES @property (readonly) short statusCode; @property (readonly, copy) OFDictionary *headers; @property (readonly, retain) OFDataArray *data; #endif | < < | 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | #ifdef OF_HAVE_PROPERTIES @property (readonly) short statusCode; @property (readonly, copy) OFDictionary *headers; @property (readonly, retain) OFDataArray *data; #endif - initWithStatusCode: (short)status headers: (OFDictionary*)headers data: (OFDataArray*)data; /** * \brief Returns the state code of the result of the HTTP request. * * \return The status code of the result of the HTTP request */ - (short)statusCode; |
︙ | ︙ |
Modified src/OFStream.h from [f035f41374] to [5cd3180445].
︙ | ︙ | |||
817 818 819 820 821 822 823 | - (int)fileDescriptor; /** * \brief Closes the stream. */ - (void)close; | < < | 817 818 819 820 821 822 823 824 825 826 827 828 829 | - (int)fileDescriptor; /** * \brief Closes the stream. */ - (void)close; - (size_t)_readNBytes: (size_t)length intoBuffer: (void*)buffer; - (void)_writeNBytes: (size_t)length fromBuffer: (const void*)buffer; - (BOOL)_isWaitingForDelimiter; @end |
Modified src/OFStreamObserver.h from [4c22db2fe5] to [d71501a357].
︙ | ︙ | |||
174 175 176 177 178 179 180 | * timeout is reached. * * \param timeout The time to wait for an event, in milliseconds * \return A boolean whether events occurred during the timeinterval */ - (BOOL)observeWithTimeout: (int)timeout; | < < | 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | * timeout is reached. * * \param timeout The time to wait for an event, in milliseconds * \return A boolean whether events occurred during the timeinterval */ - (BOOL)observeWithTimeout: (int)timeout; - (void)_addFileDescriptorForReading: (int)fd; - (void)_addFileDescriptorForWriting: (int)fd; - (void)_removeFileDescriptorForReading: (int)fd; - (void)_removeFileDescriptorForWriting: (int)fd; - (void)_processQueue; - (BOOL)_processCache; @end @interface OFObject (OFStreamObserverDelegate) <OFStreamObserverDelegate> @end |
Modified src/OFTCPSocket+SOCKS5.h from [2d18a97d74] to [557a0e6c87].
︙ | ︙ | |||
21 22 23 24 25 26 27 | #endif extern int _OFTCPSocket_SOCKS5_reference; #ifdef __cplusplus } #endif @interface OFTCPSocket (SOCKS5) | < < | 21 22 23 24 25 26 27 28 29 30 | #endif extern int _OFTCPSocket_SOCKS5_reference; #ifdef __cplusplus } #endif @interface OFTCPSocket (SOCKS5) - (void)_SOCKS5ConnectToHost: (OFString*)host port: (uint16_t)port; @end |