- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathLLHTTPProxyURLProtocol.podspec
More file actions
Latest commit
37 lines (25 loc) · 1.26 KB
/
Copy pathLLHTTPProxyURLProtocol.podspec
File metadata and controls
37 lines (25 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Pod::Spec.newdo |s|
s.name="LLHTTPProxyURLProtocol"
s.version="0.0.1"
s.summary="NSURLProtocol that lets you send NSURLRequests over a HTTP/HTTPS/SOCKS proxy server"
s.description=<<-DESC
NSURLConnection is great but it doesn't allow you to send requests over a proxy server.
LLHTTPProxyURLProtocol is designed to be a transparent layer for NSURLConnection such
that you can specify a proxy server along with credentials and push the request through
that proxy server.
It uses the lower level CFReadStreamRef APIs to achieve this magic.
Tested to support
* HTTP Proxies (with authentication)
Theoratically supports
* Socks Proxies (with authentication)
* HTTPS Proxies
DESC
s.homepage="http://github.com/echoz/LLHTTPProxyURLProtocol"
s.license={:type=>"MIT"}
s.author={"Jeremy Foo"=>"jeremy@lazylabs.co"}
s.ios.deployment_target="5.0"
s.osx.deployment_target="10.7"
s.source={:git=>"https://github.com/echoz/LLHTTPProxyURLProtocol.git",:tag=>"0.0.1"}
s.source_files="LLHTTPProxyURLProtocol/*.{h,m}"
s.requires_arc=true
end