Rev 188 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*******************************************************************************
* File: P1Client.java
* Author: Ira W. Snyder (devel@irasnyder.com)
* Class: CS380 - Computer Networking
*
* Assignment: Project #1
* Date Last Modified: 2006-01-18
*
* Purpose: Opens a connection to a server running on port 1337 on the
* local machine. Sends 10 1024 Byte payloads to the server,
* measuring the time it takes to recieve them back.
* It uses this data to calculate the RTT between the applications.
*
******************************************************************************/
import java.io.*;
import java.net.*;
public class P1Client
{
public static void main (String[] args) throws IOException
{
}
}