Overview
| Comment: | messagePackValue -> objectByParsingMessagePack |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
6cfa8f5c7e81c1047c49fa0d13289ef9 |
| User & Date: | js on 2020-08-13 21:12:03 |
| Other Links: | manifest | tags |
Context
|
2020-08-13
| ||
| 22:29 | OFData: ASN1DERValue -> objectByParsingASN1DER (check-in: e479cef7b3 user: js tags: trunk) | |
| 21:12 | messagePackValue -> objectByParsingMessagePack (check-in: 6cfa8f5c7e user: js tags: trunk) | |
| 21:07 | OFString: Rename JSONValue to objectByParsingJSON (check-in: 8611f48f42 user: js tags: trunk) | |
Changes
Modified src/Makefile from [f2c0d6b35c] to [563644dd94].
| ︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - + |
OFCharacterSet.m \
OFColor.m \
OFConstantString.m \
OFCountedSet.m \
OFData.m \
OFData+ASN1DERValue.m \
OFData+CryptoHashing.m \
|
| ︙ |
Renamed and modified src/OFData+MessagePackValue.h [2409c49524] to src/OFData+MessagePackParsing.h [6f2988f9a2].
| ︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | - + - + - + - + |
#import "OFData.h"
OF_ASSUME_NONNULL_BEGIN
#ifdef __cplusplus
extern "C" {
#endif
|
Renamed and modified src/OFData+MessagePackValue.m [caaaf51219] to src/OFData+MessagePackParsing.m [91d033cd37].
| ︙ | |||
15 16 17 18 19 20 21 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - + - + | * file. */ #include "config.h" #include <string.h> |
| ︙ | |||
538 539 540 541 542 543 544 | 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 | - - + + - + - + | return parseTable(buffer + 5, length - 5, object, readUInt32(buffer + 1), depthLimit) + 5; default: @throw [OFInvalidFormatException exception]; } } |
| ︙ |
Modified src/OFData.h from [28777ad7ed] to [410727d761].
| ︙ | |||
325 326 327 328 329 330 331 | 325 326 327 328 329 330 331 332 | - + | @end OF_ASSUME_NONNULL_END #import "OFMutableData.h" #import "OFData+ASN1DERValue.h" #import "OFData+CryptoHashing.h" |
Modified src/OFData.m from [1f025529e1] to [40564fad69].
| ︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - + |
/* References for static linking */
void
_references_to_categories_of_OFData(void)
{
_OFData_ASN1DERValue_reference = 1;
_OFData_CryptoHashing_reference = 1;
|
| ︙ |