- Nov 09, 2014
- Nov 08, 2014
- Nov 06, 2014
- Nov 05, 2014
- Nov 04, 2014
-
-
zzz authored
-
- Nov 02, 2014
-
-
zzz authored
-
zzz authored
-
zzz authored
ECDSA default for all new server tunnels ECDSA default for streamr client tunnels Fix display of server destination on edit page when not running (privkey file path wasn't absolute) Fix display of persistent client key b32 on edit page when not running Fix display of server sig type on edit page when we have a privkey file Add KeysAndCert.getSigType() Javadocs
-
- Nov 01, 2014
-
-
zzz authored
Fix history.txt UTF-8 breakage Javadoc fixes after review
-
- Oct 31, 2014
-
-
str4d authored
-
- Oct 30, 2014
- Oct 29, 2014
- Oct 28, 2014
- Oct 24, 2014
- Oct 22, 2014
- Oct 21, 2014
-
-
zzz authored
No spec yet, just followed str4d's testnews.atom.xml proposal. Atom parsing is tested, su3 part is incomplete and untested. Todo: add spec to http://i2p-projekt.i2p/en/docs/spec/updates, finish su3 and test.
-
- Oct 20, 2014
-
-
zzz authored
Switch back to QueuedThreadPool (ticket #1395) In Jetty 5/6, the default QTP was not concurrent, so we switched to ThreadPoolExecutor with a fixed-size queue, a set maxThreads, and a RejectedExecutionPolicy of CallerRuns. Unfortunately, CallerRuns causes lockups in Jetty NIO. In addition, no flavor of TPE gives us what QTP does: - TPE direct handoff (which we were using) never queues. This doesn't provide any burst management when maxThreads is reached. CallerRuns was an attempt to work around that. - TPE unbounded queue does not adjust the number of threads. This doesn't provide automatic resource management. - TPE bounded queue does not add threads until the queue is full. This doesn't provide good responsiveness to even small bursts. QTP adds threads as soon as the queue is non-empty. QTP as of Jetty 7 uses concurrent. QTP unbounded queue is the default in Jetty. So switch back to QTP with a bounded queue, which does what we want, which is first expand the thread pool, then start queueing, then reject. ref: http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.html https://wiki.eclipse.org/Jetty/Howto/High_Load
-
- Oct 18, 2014
-
-
zzz authored
-
- Oct 15, 2014
-
-
zzz authored
-
- Oct 13, 2014
-
-
zzz authored
types Standard, IRC, and Socks IRC, if non-shared.
-
- Oct 07, 2014
- Oct 04, 2014
- Oct 03, 2014
- Sep 30, 2014
-
-
zzz authored
- code cleanup in direction handling
-
- Sep 29, 2014
-
-
zzz authored
-