This commit is contained in:
Trustin Lee 2009-09-25 02:26:28 +00:00
parent 0180db1c2c
commit 3352eb4cf7
2 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,9 @@ import org.jboss.netty.handler.codec.http.HttpRequest;
import org.jboss.netty.handler.codec.http.HttpVersion;
/**
* A simple HTTP client that prints out the content of the HTTP response to
* {@link System#out} to test {@link HttpServer}.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Andy Taylor (andy.taylor@jboss.org)
* @author Trustin Lee (tlee@redhat.com)

View File

@ -22,6 +22,9 @@ import org.jboss.netty.bootstrap.ServerBootstrap;
import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
/**
* An HTTP server that sends back the content of the received HTTP request
* in a pretty plaintext form.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Andy Taylor (andy.taylor@jboss.org)
* @author Trustin Lee (tlee@redhat.com)