2005-11-16 jrandom

* More aggressive I2PTunnel content encoding munging to work around some
      rare HTTP behavior (ignoring q values on Accept-encoding, using gzip
      even when only identity is specified, etc).  I2PTunnelHTTPServer now
      sends "Accept-encoding: \r\n" plus "X-Accept-encoding: x-i2p-gzip\r\n",
      and I2PTunnelHTTPServer handles x-i2p-gzip in either the Accept-encoding
      or X-Accept-encoding headers.  Eepsite operators who do not know to
      check for X-Accept-encoding will simply use the identity encoding.
This commit is contained in:
jrandom
2005-11-16 11:50:56 +00:00
committed by zzz
parent f7236d7d58
commit 99ae3ee459
4 changed files with 32 additions and 8 deletions

View File

@@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
*
*/
public class RouterVersion {
public final static String ID = "$Revision: 1.289 $ $Date: 2005/11/15 01:38:00 $";
public final static String ID = "$Revision: 1.290 $ $Date: 2005/11/15 22:20:22 $";
public final static String VERSION = "0.6.1.5";
public final static long BUILD = 0;
public final static long BUILD = 1;
public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID);