You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by tr...@apache.org on 2007/11/14 05:07:48 UTC

svn commit: r594752 - /mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java

Author: trustin
Date: Tue Nov 13 20:07:48 2007
New Revision: 594752

URL: http://svn.apache.org/viewvc?rev=594752&view=rev
Log:
Fixed wrong property name

Modified:
    mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java

Modified: mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java
URL: http://svn.apache.org/viewvc/mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java?rev=594752&r1=594751&r2=594752&view=diff
==============================================================================
--- mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java (original)
+++ mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java Tue Nov 13 20:07:48 2007
@@ -58,9 +58,9 @@
  * <td>Active</td>
  * <td>You want a keep-alive request is sent when the reader is idle.
  * Once the request is sent, the response for the request should be
- * received within <tt>keepAliveTimeout</tt> seconds.  Otherwise, the specified
- * {@link KeepAlivePolicy} should be enforced.  If a keep-alive request
- * is received, its response also should be sent back.</td>
+ * received within <tt>keepAliveRequestTimeout</tt> seconds.  Otherwise,
+ * the specified {@link KeepAlivePolicy} will be enforced.  If a keep-alive
+ * request is received, its response also should be sent back.</td>
  * <td>Both {@link KeepAliveMessageFactory#getRequest(IoSession)} and
  * {@link KeepAliveMessageFactory#getResponse(IoSession, Object)} must
  * return a non-<tt>null</tt>.</td>