EchoTCPClient.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.net.echo;

  18. import java.io.InputStream;

  19. import org.apache.commons.net.discard.DiscardTCPClient;

  20. /**
  21.  * The EchoTCPClient class is a TCP implementation of a client for the Echo protocol described in RFC 862. To use the class, merely establish a connection with
  22.  * {@link org.apache.commons.net.SocketClient#connect connect } and call {@link DiscardTCPClient#getOutputStream getOutputStream() } to retrieve the echo output
  23.  * stream and {@link #getInputStream getInputStream() } to get the echo input stream. Don't close either stream when you're done using them. Rather, call
  24.  * {@link org.apache.commons.net.SocketClient#disconnect disconnect } to clean up properly.
  25.  *
  26.  * @see EchoUDPClient
  27.  * @see DiscardTCPClient
  28.  */

  29. public final class EchoTCPClient extends DiscardTCPClient {
  30.     /** The default echo port. It is set to 7 according to RFC 862. */
  31.     public static final int DEFAULT_PORT = 7;

  32.     /**
  33.      * The default EchoTCPClient constructor. It merely sets the default port to <code>DEFAULT_PORT</code>.
  34.      */
  35.     public EchoTCPClient() {
  36.         setDefaultPort(DEFAULT_PORT);
  37.     }

  38.     /**
  39.      * Returns an InputStream from which you may read echoed data from the server. You should NOT close the InputStream when you're finished reading from it.
  40.      * Rather, you should call {@link org.apache.commons.net.SocketClient#disconnect disconnect } to clean up properly.
  41.      *
  42.      * @return An InputStream from which you can read echoed data from the server.
  43.      */
  44.     public InputStream getInputStream() {
  45.         return _input_;
  46.     }

  47. }