ttcp is a TCP/IP (and UDP) test program. I have compiled it for SunOS 4.1.4
and OS9 systems. The file ttcp.1 is a Unix style man page for the program.

To run the test between two systems (host1 and host2), invoke the 'receiver'
first:

    host1: ttcp -r -s

Then invoke the 'sender':

    host2: ttcp -t -s host1

This will use a TCP socket to send a megabyte of data from host2 to host1
and time the transfer.

To repeat the test, but using UDP instead of TCP:

    host1: ttcp -r -s -u

    host2: ttcp -t -s -u host1

Makefile	OS9 'FasTrak' makefile
ttcp.1		Unix man page
ttcp.c		Source
ttcp.os9	OS9 v3.0 executable
ttcp.sun	SunOS 4.1.4 executable


Compiling for OS9:
  make                    #uses Ultra C compiler

  # output of make
  Compiling ttcp
  xcc -mode=ucc -to=osk -g ttcp.c -eas=. -fd=ttcp.r
  echo Linking ttcp
  Linking ttcp
  xcc -mode=ucc -to=osk -g -l=netdb.l -l=socklib.l -l=sys_clib.l ttcp.r -f=ttcp

Compiling for SunOS:
  gcc ttcp.c -o ttcp.sun
