- 26 Apr, 2017 1 commit
-
-
Guus der Kinderen authored
Javadoc comment are dangling if they don't belong to any class, method or field. For example a Javadoc comment in between method declarations that have their own javadoc comments. These generate needless warnings, which are in most instances easily solved. By far most problems occur in the license block that's in most files.
-
- 04 Jan, 2017 1 commit
-
-
daryl herzmann authored
-
- 04 Dec, 2015 1 commit
-
-
Dave Cridland authored
This reverts commit d0667e21. While I think the general code is right, it's clearly got serious shortcomings so I think it's best to back this out for now.
-
- 27 Nov, 2015 1 commit
-
-
Dave Cridland authored
This one is hard to duplicate in the lab, so this may not actually cure the issue, however I suspect it does. The existing code is based around a route of last resort, the OutgoingSessionPromise, which builds a helper - the PacketsProcessor - and creates the new session. The PacketsProcessors operate from within a thread pool, and thus have contended execution time. As new packets arrives from onward transmission during the session setup, the PacketsProcessor queues them for retransmission. However, the act of session creation also creates the outgoing route, meaning that later packets will bypass the queue, and be transmitted out of order. This should give the impression of a randomly reordered set of stanzas, but would in fact be two consecutive sequences of ordered stanzas which are interleaved, hence if the two sequences are A-E, F-J, one might see: A, B, F, G, C, H, I, D, J, E The fix here is two ensure that all packets are queued until the queue itself is empty. In the solution provided, an additional helper class acts as the route's RoutableChannelHandler, and stores packets in a queue until the real ServerSession can catch up with the pending traffic. After that it simply passes the process() call argument through.
-
- 09 Nov, 2015 2 commits
-
-
Christian Schudt authored
-
Christian Schudt authored
There were still ~1500 missing annotations! This time fixed with IntelliJ ;-)
-
- 02 Jun, 2014 1 commit
-
-
Sven Bunge authored
-
- 21 Apr, 2010 1 commit
-
-
God Ly authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11686 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 29 Jan, 2010 1 commit
-
-
guus authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11578 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 28 Jan, 2010 1 commit
-
-
guus authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11568 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 09 Nov, 2009 1 commit
-
-
guus authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11388 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 07 Nov, 2009 2 commits
-
-
guus authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11376 b35dd754-fafc-0310-a699-88a17e54d16e
-
guus authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11371 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 30 Sep, 2009 1 commit
-
-
Matt Tucker authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11291 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 07 Jul, 2008 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10647 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 22 Apr, 2008 1 commit
-
-
guus authored
- No longer pass the same RoutingTable instance to each processor. Reference the instance that's kept in the parent class instead; - renamed a field from the inner class that was hiding a field from the parent class. git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10252 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 18 Apr, 2008 1 commit
-
-
Daniel Henninger authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10240 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 11 Apr, 2008 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10204 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 18 Mar, 2008 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10077 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 13 Mar, 2008 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10065 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 15 Nov, 2007 1 commit
-
-
Jay Kline authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9506 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 04 Jul, 2007 1 commit
-
-
Gaston Dombiak authored
2) Fixed s2s problem in routing table that was causing endless loop --> high CPU problem git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8692 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 28 Jun, 2007 1 commit
-
-
Gaston Dombiak authored
2) Optimization - removed bottleneck in cluster - removed counter of sessions from cache. Calculated now on demand. 3) Fixed counter of authenticated session to not decrement when non-authenticated session is removed. JM-1095 git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8664 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 31 May, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8417 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 30 May, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8405 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 18 May, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8353 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 28 Mar, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7742 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 04 Jan, 2007 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6545 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 11 Dec, 2006 1 commit
-
-
Gaston Dombiak authored
Optimized (a lot) logic for starting s2s connections to several remote servers at the same time. JM-657 git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6360 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 09 May, 2006 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3867 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 25 Jan, 2006 2 commits
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3360 b35dd754-fafc-0310-a699-88a17e54d16e
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3356 b35dd754-fafc-0310-a699-88a17e54d16e
-
- 13 Dec, 2005 1 commit
-
-
Gaston Dombiak authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@3207 b35dd754-fafc-0310-a699-88a17e54d16e
-