This commit is contained in:
Trustin Lee 2009-06-18 08:48:36 +00:00
parent a0adcf8dc8
commit d2e91d2a45
2 changed files with 6 additions and 3 deletions

View File

@ -31,9 +31,9 @@ import org.jboss.netty.channel.socket.SocketChannel;
import org.jboss.netty.util.internal.ExecutorUtil;
/**
* A {@link ClientSocketChannelFactory} that creates a {@link SocketChannel}
* which connects to an {@link HttpTunnelingServlet} to communicate with the
* server application behind the {@link HttpTunnelingServlet}.
* Creates a client-side {@link SocketChannel} which connects to an
* {@link HttpTunnelingServlet} to communicate with the server application
* behind the {@link HttpTunnelingServlet}.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Andy Taylor (andy.taylor@jboss.org)

View File

@ -25,5 +25,8 @@
* An HTTP-based client-side {@link org.jboss.netty.channel.socket.SocketChannel}
* and its corresponding server-side Servlet implementation that make your
* existing server application work in a firewalled network.
* <p>
* Please refer to the example in the <tt>org.jboss.netty.example.http.tunnel</tt>
* package to learn how to configure the HTTP tunneling transport.
*/
package org.jboss.netty.channel.socket.http;