netty5/handler
Frédéric Brégier 61b1214b24 Fix for first issue from #1652 on computation of time to wait in AbstractTrafficShapingHandler for Netty 4
Fix for first issue from #1652 on computation of time to wait in AbstractTrafficShapingHandler for Netty 4, using the same formula than in Netty 3 (wrong place for parenthese).
Was:

    (bytes * 1000 / limit - interval / 10) * 10;

Becomes:

    (bytes * 1000 / limit - interval) / 10 * 10;
2013-07-26 15:24:31 +02:00
..
src Fix for first issue from #1652 on computation of time to wait in AbstractTrafficShapingHandler for Netty 4 2013-07-26 15:24:31 +02:00
pom.xml [maven-release-plugin] prepare for next development iteration 2013-07-23 10:04:23 +02:00