@@ -14,11 +14,10 @@ * file. */ #import "OFStream.h" #import "OFHTTPRequest.h" -#import "OFHTTPCookie.h" OF_ASSUME_NONNULL_BEGIN @class OFDictionary OF_GENERIC(KeyType, ObjectType); @class OFArray OF_GENERIC(ObjectType); @@ -31,11 +30,10 @@ @interface OFHTTPResponse: OFStream { of_http_request_protocol_version_t _protocolVersion; short _statusCode; OFDictionary OF_GENERIC(OFString *, OFString *) *_headers; - OFArray OF_GENERIC(OFHTTPCookie *) *_cookies; } /*! * The status code of the reply to the HTTP request. */ @@ -45,16 +43,10 @@ * The headers of the reply to the HTTP request. */ @property OF_NULLABLE_PROPERTY (nonatomic, copy) OFDictionary OF_GENERIC(OFString *, OFString *) *headers; -/*! - * The cookies to set of the reply to the HTTP request. - */ -@property OF_NULLABLE_PROPERTY (nonatomic, copy) - OFArray OF_GENERIC(OFHTTPCookie *) *cookies; - /*! * @brief Sets the protocol version of the HTTP request reply. * * @param protocolVersion The protocol version of the HTTP request reply */