From: Chi-Vien Ly Date: Thu, 13 Feb 2014 07:17:11 +0000 (+0000) Subject: Merge "Increase SSL input buffer size to accommodate large number of flows" X-Git-Tag: autorelease-tag-v20140601202136_82eb3f9~462 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=38500d0f0e22f84bf31618d8b5e9aab37fdb897c;hp=cb037c92ab0b907a96487ff84052638bdddab3e9;p=controller.git Merge "Increase SSL input buffer size to accommodate large number of flows" --- diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SecureMessageReadWriteService.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SecureMessageReadWriteService.java index d60bcab8b3..aa60f91174 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SecureMessageReadWriteService.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SecureMessageReadWriteService.java @@ -407,9 +407,9 @@ public class SecureMessageReadWriteService implements IMessageReadWrite { this.myAppData = ByteBuffer .allocate(session.getApplicationBufferSize()); this.peerAppData = ByteBuffer.allocate(session - .getApplicationBufferSize() * 2); + .getApplicationBufferSize() * 20); this.myNetData = ByteBuffer.allocate(session.getPacketBufferSize()); - this.peerNetData = ByteBuffer.allocate(session.getPacketBufferSize() * 2); + this.peerNetData = ByteBuffer.allocate(session.getPacketBufferSize() * 20); } @Override