ObjFW  Diff

Differences From Artifact [46404a5b3d]:

To Artifact [723c374a89]:


129
130
131
132
133
134
135
136

137
138
139
140
141
142
143
144
145
146
147
148
129
130
131
132
133
134
135

136
137
138
139
140

141
142
143
144
145
146
147







-
+




-







		return &_remoteAddress;

	return NULL;
}

- (id)copy
{
	OFHTTPRequest *copy = [[OFHTTPRequest alloc] init];
	OFHTTPRequest *copy = [[OFHTTPRequest alloc] initWithURL: _URL];

	@try {
		copy->_method = _method;
		copy->_protocolVersion = _protocolVersion;
		copy.URL = _URL;
		copy.headers = _headers;
		copy.remoteAddress = self.remoteAddress;
	} @catch (id e) {
		[copy release];
		@throw e;
	}