Author: trustin
Date: Tue Dec 21 22:59:54 2004
New Revision: 123055

URL: http://svn.apache.org/viewcvs?view=rev&rev=123055
Log:
 * Increased the size of ByteBuffer from ByteBufferPool to 1500 (the limit of 
UDP packet)
Modified:
   
incubator/directory/seda/trunk/src/java/org/apache/seda/DefaultFrontendFactory.java

Modified: 
incubator/directory/seda/trunk/src/java/org/apache/seda/DefaultFrontendFactory.java
Url: 
http://svn.apache.org/viewcvs/incubator/directory/seda/trunk/src/java/org/apache/seda/DefaultFrontendFactory.java?view=diff&rev=123055&p1=incubator/directory/seda/trunk/src/java/org/apache/seda/DefaultFrontendFactory.java&r1=123054&p2=incubator/directory/seda/trunk/src/java/org/apache/seda/DefaultFrontendFactory.java&r2=123055
==============================================================================
--- 
incubator/directory/seda/trunk/src/java/org/apache/seda/DefaultFrontendFactory.java
 (original)
+++ 
incubator/directory/seda/trunk/src/java/org/apache/seda/DefaultFrontendFactory.java
 Tue Dec 21 22:59:54 2004
@@ -89,7 +89,7 @@
     private BufferPool createBufferPool()
     {
         DefaultBufferPoolConfig config =
-            new DefaultBufferPoolConfig("", 10, 100, 20, 20);
+            new DefaultBufferPoolConfig("", 10, 100, 20, 1500);
         DefaultBufferPool bp = new DefaultBufferPool(config);
         bp.setMonitor(new LoggingBufferMonitor("bufferPool"));
         return bp;

Reply via email to