Created
September 2, 2011 15:21
-
-
Save gsathya/1188901 to your computer and use it in GitHub Desktop.
Routing through orbot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HttpClient httpclient = new DefaultHttpClient(); | |
HttpPost httppost = new HttpPost("http://blip.tv/file/post"); | |
HttpHost proxy = new HttpHost("localhost", 8118); | |
httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment