Commit 42ac822f authored by Alex Wenckus's avatar Alex Wenckus Committed by alex

Sent packets were being double-counted.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6629 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3926110a
...@@ -256,7 +256,6 @@ public class HttpSessionManager { ...@@ -256,7 +256,6 @@ public class HttpSessionManager {
for (Element packet : elements) { for (Element packet : elements) {
try { try {
router.route(packet); router.route(packet);
session.incrementClientPacketCount();
} }
catch (UnsupportedEncodingException e) { catch (UnsupportedEncodingException e) {
throw new HttpBindException("Bad auth request, unknown encoding", true, 400); throw new HttpBindException("Bad auth request, unknown encoding", true, 400);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment