Changeset 2121


Ignore:
Timestamp:
2001-03-06T09:26:56+13:00 (23 years ago)
Author:
say1
Message:

extra docs

Location:
trunk/java-client/org/nzdl/gsdl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/org/nzdl/gsdl/Makefile

    r2111 r2121  
    33
    44all : subdirs $(CLASSES)
     5    echo try a command like "java org.nzdl.gsdl.SimpleClient -v 2 -Q"
    56
    67subdirs :
  • trunk/java-client/org/nzdl/gsdl/ptp/Connection.java

    r2109 r2121  
    3535
    3636/**
    37  * Class ...
    38  *
    39  * Based on algorithms in ...
     37 * Class Connection prepresents one end of a connection between two peers in a Peer-To-Peer Network.
     38 *
     39 * Handles all protocol work except parsing of Locators.
    4040 *
    4141 * @author stuart yeates ([email protected])
    4242 * @version $Revision$
    43  * @see
     43 * @see org.nzdl.gsdl.ptp.Node
    4444 * @see
    4545 * @see
     
    6969  public static final String VERSION = "VERSION ";
    7070
     71  /** Are we a server ? (false indicates we're a client) */
    7172  boolean server = false;
     73 
     74  /** Has the connection been closed ? */
    7275  boolean connectionClosed = false;
    73 
     76  /** the port we're connected to */
    7477  int port = 0;
     78  /** the host we're connected to */
    7579  String remoteHostName = "";
     80  /** the host we're connected to */
    7681  InetAddress  remoteHost = null;
    7782
     83  /** The underlying socket */
    7884  Socket socket = null;
     85  /** The input from the socket */
    7986  Reader input = null;
     87  /** The output to the socket */
    8088  Writer output = null;
    8189 
  • trunk/java-client/org/nzdl/gsdl/util/Makefile

    r2069 r2121  
    1818
    1919all: $(CLASSFILES)
    20     echo try a command like "java org.nzdl.SimpleClient -v 2 -Q"
    2120
    2221clean:
Note: See TracChangeset for help on using the changeset viewer.