eksopl / asagi

Asagi imageboard dumper
Other
110 stars 17 forks source link

Proxy support #21

Open eksopl opened 12 years ago

eksopl commented 12 years ago

To be able to archive location restricted imageboards.

oohnoitz commented 12 years ago

Since this is partially related, the ability to "bind" to another IP address should be added to asagi. This should work the same way as fuuka, but the option is located in the JSON config file instead. It would work for hosts that allow you to assign IP addresses located in other countries.

eksopl commented 12 years ago

Oh yeah, I forgot about that. Good call.

oohnoitz commented 11 years ago

org.apache.http.conn.params.ConnRouteParams could be used to close this issue.

HttpParams params = hc.getparams();
params.setParameter(ClientPNames.COOKIE_POLICY, CookiePolicy.IGNORE_COOKIES);
ConnRouteParams.setLocalAddress(params, InetAddress.getByName("IP.ADDRESS"));

http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/conn/params/ConnRouteParams.html