Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Ben Copsey
2010-06-30 12:05:06 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5ed451b4351c776dd941de316c7f1ee3d0724eb8
5ed451b4
1 parent
4535486c
Tweaks to ensure proxyType is correctly reused in HEAD requests and copies, and released in dealloc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
Classes/ASIHTTPRequest.m
Classes/ASIHTTPRequest.m
View file @
5ed451b
...
...
@@ -24,7 +24,7 @@
// Automatically set on build
NSString
*
ASIHTTPRequestVersion
=
@"v1.7-
5
2010-06-30"
;
NSString
*
ASIHTTPRequestVersion
=
@"v1.7-
6
2010-06-30"
;
NSString
*
const
NetworkRequestErrorDomain
=
@"ASIHTTPRequestErrorDomain"
;
...
...
@@ -327,6 +327,7 @@ static NSOperationQueue *sharedQueue = nil;
[
authenticationScheme
release
];
[
requestCredentials
release
];
[
proxyHost
release
];
[
proxyType
release
];
[
proxyUsername
release
];
[
proxyPassword
release
];
[
proxyDomain
release
];
...
...
@@ -1313,6 +1314,7 @@ static NSOperationQueue *sharedQueue = nil;
[
headRequest
setProxyDomain
:[
self
proxyDomain
]];
[
headRequest
setProxyHost
:[
self
proxyHost
]];
[
headRequest
setProxyPort
:[
self
proxyPort
]];
[
headRequest
setProxyType
:[
self
proxyType
]];
[
headRequest
setShouldPresentAuthenticationDialog
:[
self
shouldPresentAuthenticationDialog
]];
[
headRequest
setShouldPresentProxyAuthenticationDialog
:[
self
shouldPresentProxyAuthenticationDialog
]];
[
headRequest
setTimeOutSeconds
:[
self
timeOutSeconds
]];
...
...
@@ -2955,6 +2957,7 @@ static NSOperationQueue *sharedQueue = nil;
[
newRequest
setProxyDomain
:[
self
proxyDomain
]];
[
newRequest
setProxyHost
:[
self
proxyHost
]];
[
newRequest
setProxyPort
:[
self
proxyPort
]];
[
newRequest
setProxyType
:[
self
proxyType
]];
[
newRequest
setUploadProgressDelegate
:[
self
uploadProgressDelegate
]];
[
newRequest
setDownloadProgressDelegate
:[
self
downloadProgressDelegate
]];
[
newRequest
setShouldPresentAuthenticationDialog
:[
self
shouldPresentAuthenticationDialog
]];
...
...
Please
register
or
login
to post a comment