Subversion Repositories programming

Rev

Rev 188 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
186 ira 1
/*******************************************************************************
2
 * File: P1Client.java
3
 * Author: Ira W. Snyder (devel@irasnyder.com)
4
 * Class: CS380 - Computer Networking
5
 *
6
 * Assignment: Project #1
7
 * Date Last Modified: 2006-01-18
8
 *
9
 * Purpose: Opens a connection to a server running on port 1337 on the
10
 *          local machine. Sends 10 1024 Byte payloads to the server,
11
 *          measuring the time it takes to recieve them back.
12
 *          It uses this data to calculate the RTT between the applications.
13
 *
14
 ******************************************************************************/
15
 
16
import java.io.*;
17
import java.net.*;
18
 
19
public class P1Client
20
{
21
 
22
    public static void main (String[] args) throws IOException
23
    {
24
    }
25
 
26
}
27