i2ptunnel: Whitelist IRC AWAY inbound

This commit is contained in:
zzz
2016-09-22 17:15:33 +00:00
parent 4ab727acbd
commit 78b7385281
3 changed files with 11 additions and 2 deletions

View File

@ -54,7 +54,8 @@ abstract class IRCFilter {
"AUTHENTICATE", // SASL, also requires CAP below
// http://tools.ietf.org/html/draft-mitchell-irc-capabilities-01
"CAP",
"PROTOCTL"
"PROTOCTL",
"AWAY"
};

View File

@ -1,3 +1,11 @@
2016-09-22 zzz
* Crypto: Don't NPE in encoding when field not set
* DataHelper: Fix read() for nonzero offset
* i2ptunnel: Whitelist IRC AWAY inbound
2016-08-21 zzz
* Console: Add jsps to view entire router.log and wrapper.log files
2016-08-19 zzz
* CPUID: Add IDs for Kaby Lake
* JettyStart: Fix main()

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 10;
public final static long BUILD = 11;
/** for example "-test" */
public final static String EXTRA = "";