From a3886b00805726fa87479426c32899f593f8f9e7 Mon Sep 17 00:00:00 2001
From: str4d <str4d@mail.i2p>
Date: Sun, 21 Apr 2013 13:30:22 +0000
Subject: [PATCH] Use HTTP 404 for Bad URI (c/f jetty, lighttpd)

---
 .../java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java         | 2 +-
 installer/resources/proxy/baduri-header.ht                      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
index 67fdf31e3d..705b25a921 100644
--- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
+++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
@@ -163,7 +163,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn
             "The request uses a bad protocol. " +
             "The I2P HTTP Proxy supports http:// requests ONLY. Other protocols such as https:// and ftp:// are not allowed.<BR>").getBytes();
     private final static byte[] ERR_BAD_URI =
-                                ("HTTP/1.1 400 Bad URI\r\n" +
+                                ("HTTP/1.1 404 Bad URI\r\n" +
             "Content-Type: text/html; charset=iso-8859-1\r\n" +
             "Cache-control: no-cache\r\n" +
             "\r\n" +
diff --git a/installer/resources/proxy/baduri-header.ht b/installer/resources/proxy/baduri-header.ht
index 012cdef589..a22da8d861 100644
--- a/installer/resources/proxy/baduri-header.ht
+++ b/installer/resources/proxy/baduri-header.ht
@@ -1,4 +1,4 @@
-HTTP/1.1 400 Bad URI
+HTTP/1.1 404 Bad URI
 Content-Type: text/html; charset=UTF-8
 Cache-control: no-cache
 Connection: close
-- 
GitLab