2005-09-16 jrandom

* Added the i2p.exe and i2pinstall.exe for windows users, using launch4j.
    * Added runplain.sh for *nix/osx users having problems using the java
      service wrapper (called from the install dir as: sh runplain.sh)
    * Bundle susidns and syndie, with links on the top nav
    * Have I2PTunnelHTTPClient and I2PTunnelHTTPServer use the x-i2p-gzip
      content-encoding (if offered), reducing the payload size before it
      reaches the streaming lib.  The existing compression is at the i2cp
      level, so we've been packetizing 4KB of uncompressed data and then
      compressing those messages, rather than compressing and then packetizing
      4KB of compressed data.  This should reduce the number of round trips
      to fetch web pages substantially.
    * Adjust the startup and timing of the addressbook so that susidns always
      has config to work off, and expose a method for susidns to tell it to
      reload its config and rerun.
This commit is contained in:
jrandom
2005-09-16 04:12:24 +00:00
committed by zzz
parent 8c1895e04f
commit d89f589f2b
17 changed files with 396 additions and 46 deletions

View File

@ -0,0 +1,14 @@
package net.i2p.router;
import java.io.*;
public class RouterLaunch {
public static void main(String args[]) {
try {
System.setOut(new PrintStream(new FileOutputStream("wrapper.log")));
} catch (IOException ioe) {
ioe.printStackTrace();
}
Router.main(args);
}
}