diff --git a/browser/browser b/browser/browser index f6b9fe5..932afbe 100755 Binary files a/browser/browser and b/browser/browser differ diff --git a/browser/main.go b/browser/main.go index 1f31405..a8b0754 100644 --- a/browser/main.go +++ b/browser/main.go @@ -26,7 +26,7 @@ var ( samPortString = flag.String("bridge-port", "7656", ":port of the SAM bridge") watchProfiles = flag.String("watch-profiles", "~/.mozilla/.firefox.profile.i2p.default/user.js,~/.mozilla/.firefox.profile.i2p.debug/user.js", "Monitor and control these Firefox profiles") destfile = flag.String("dest-file", "invalid.tunkey", "Use a long-term destination key") - debugConnection = flag.Bool("conn-debug", true, "Print connection debug info") + debugConnection = flag.Bool("conn-debug", false, "Print connection debug info") inboundTunnelLength = flag.Int("in-tun-length", 2, "Tunnel Length(default 3)") outboundTunnelLength = flag.Int("out-tun-length", 2, "Tunnel Length(default 3)") inboundTunnels = flag.Int("in-tunnels", 2, "Inbound Tunnel Count(default 2)") @@ -45,7 +45,7 @@ var ( reduceIdleQuantity = flag.Int("reduce-idle-tunnels", 1, "Reduce tunnels to this level") runArguments = flag.String("run-arguments", "", "Pass arguments to run-command") suppressLifetime = flag.Bool("suppress-lifetime-output", false, "Suppress \"Tunnel lifetime\" output") - runQuiet = flag.Bool("run-quiet", true, "Suppress all non-command output") + runQuiet = flag.Bool("run-quiet", false, "Suppress all non-command output") outproxy = flag.String("outproxy-addr", "false.i2p", "Use this address as an outproxy, either a base32 address or a local HTTP proxy") socks = flag.Bool("outproxy-socks", true, "Use a SOCKS outproxy") )