|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.i2p.util.EepGet
net.i2p.client.streaming.I2PSocketEepGet
public class I2PSocketEepGet
Fetch a URL using a socket from the supplied I2PSocketManager. Hostname must resolve to an i2p destination - no routing to an outproxy. Does not support response gzip decompression (unlike I2PTunnelHTTPProxy) (yet), but of course there is still gzip at the I2CP layer. This is designed for Java apps such as bittorrent clients that wish to do HTTP fetches and use other protocols on a single set of tunnels. This may provide anonymity benefits over using the shared clients HTTP proxy, preventing inadvertent outproxy usage, reduce resource usage by eliminating a second set of tunnels, and eliminate the requirement to to separately configure the proxy host and port. For additional documentation see the superclass. Supports http://example.i2p/blah Supports http://B32KEY.b32.i2p/blah Supports http://i2p/B64KEY/blah for compatibility with the eepproxy Supports http://B64KEY/blah for compatibility with the eepproxy Warning - does not support /eepproxy/blah, address helpers, http://B64KEY.i2p/blah, or other odd things that may be found in the HTTP proxy.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class net.i2p.util.EepGet |
---|
EepGet.CLIStatusListener, EepGet.Gunzipper, EepGet.StatusListener |
Field Summary |
---|
Constructor Summary | |
---|---|
I2PSocketEepGet(I2PAppContext ctx,
I2PSocketManager mgr,
int numRetries,
long minSize,
long maxSize,
String outputFile,
OutputStream outputStream,
String url)
|
|
I2PSocketEepGet(I2PAppContext ctx,
I2PSocketManager mgr,
int numRetries,
String outputFile,
String url)
|
Method Summary | |
---|---|
boolean |
fetch(long fetchHeaderTimeout,
long totalTimeout,
long inactivityTimeout)
We have to override this to close _socket, since we can't use _proxy in super as the I2PSocket. |
protected String |
getRequest()
Guess we have to override this since super doesn't strip the http://host from the GET line which hoses some servers (opentracker) HTTP proxy was kind enough to do this for us |
static void |
main(String[] args)
I2PSocketEepGet [-n #retries] [-t timeout] url Uses I2CP at localhost:7654 with a single 1-hop tunnel each direction. |
protected void |
readHeaders()
Overridden to disable inline gunzipping |
protected void |
sendRequest(SocketTimeout timeout)
Look up the address, get a socket from the I2PSocketManager supplied in the constructor, and send the request. |
Methods inherited from class net.i2p.util.EepGet |
---|
addAuthorization, addHeader, addStatusListener, doFetch, fetch, fetch, getContentType, getETag, getLastModified, getNotModified, getStatusCode, readChunkLength, setWriteErrorToOutput, stopFetching, suggestName |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public I2PSocketEepGet(I2PAppContext ctx, I2PSocketManager mgr, int numRetries, String outputFile, String url)
public I2PSocketEepGet(I2PAppContext ctx, I2PSocketManager mgr, int numRetries, long minSize, long maxSize, String outputFile, OutputStream outputStream, String url)
Method Detail |
---|
public boolean fetch(long fetchHeaderTimeout, long totalTimeout, long inactivityTimeout)
fetch
in class EepGet
fetchHeaderTimeout
- <= 0 for none (proxy will timeout if none, none isn't recommended if no proxy)totalTimeout
- <= 0 for default noneinactivityTimeout
- <= 0 for default 60 secprotected void readHeaders() throws IOException
readHeaders
in class EepGet
IOException
protected void sendRequest(SocketTimeout timeout) throws IOException
sendRequest
in class EepGet
timeout
- ignored
IOException
protected String getRequest() throws IOException
getRequest
in class EepGet
IOException
public static void main(String[] args)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |