diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
index 09b9cbf4b..8bb75ad4a 100644
--- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
+++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
@@ -54,20 +54,20 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable
.getBytes();
private final static byte[] ERR_DESTINATION_UNKNOWN =
- ("HTTP/1.1 404 Not Found\r\n"+
+ ("HTTP/1.1 503 Service Unavailable\r\n"+
"Content-Type: text/html; charset=iso-8859-1\r\n"+
"Cache-control: no-cache\r\n"+
"\r\n"+
- "
I2P ERROR: NOT FOUND
"+
- "That Desitination was not found. Perhaps you pasted in the wrong "+
- "BASE64 I2P Destination or the link you are following is bad. "+
- "The host (or the WWW proxy, if you're using one) could also be "+
- "temporarily offline. You may want to retry. "+
+ "I2P ERROR: DESTINATION NOT FOUND
"+
+ "That I2P Desitination was not found. Perhaps you pasted in the "+
+ "wrong BASE64 I2P Destination or the link you are following is "+
+ "bad. The host (or the WWW proxy, if you're using one) could also "+
+ "be temporarily offline. You may want to retry. "+
"Could not find the following Destination:
")
.getBytes();
private final static byte[] ERR_TIMEOUT =
- ("HTTP/1.1 404 Not Found\r\n"+
+ ("HTTP/1.1 504 Gateway Timeout\r\n"+
"Content-Type: text/html; charset=iso-8859-1\r\n"+
"Cache-control: no-cache\r\n\r\n"+
"I2P ERROR: TIMEOUT
"+