Differences From Artifact [b110c8f2e2]:
- File src/OFHTTPRequest.h — part of check-in [3b09055db5] at 2019-03-12 21:50:58 on branch trunk — OFHTTPRequest: Note that remoteAddress is copied (user: js, size: 4076) [annotate] [blame] [check-ins using]
To Artifact [9466bbaa67]:
- File
src/OFHTTPRequest.h
— part of check-in
[496695d778]
at
2019-09-29 19:35:38
on branch trunk
— Either restrict subclassing or reserve ivar space
This allows ABI stability with the fragile ABI. (user: js, size: 4097) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
@interface OFHTTPRequest: OFObject <OFCopying>
{
OFURL *_URL;
of_http_request_method_t _method;
of_http_request_protocol_version_t _protocolVersion;
OFDictionary OF_GENERIC(OFString *, OFString *) *_Nullable _headers;
of_socket_address_t _remoteAddress;
}
/*!
* @brief The URL of the HTTP request.
*/
@property (copy, nonatomic) OFURL *URL;
| > | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
@interface OFHTTPRequest: OFObject <OFCopying>
{
OFURL *_URL;
of_http_request_method_t _method;
of_http_request_protocol_version_t _protocolVersion;
OFDictionary OF_GENERIC(OFString *, OFString *) *_Nullable _headers;
of_socket_address_t _remoteAddress;
OF_RESERVE_IVARS(4)
}
/*!
* @brief The URL of the HTTP request.
*/
@property (copy, nonatomic) OFURL *URL;
|
| ︙ | ︙ |