
What you find in this directory
-------------------------------

Makefile:
	Creates the programs "listen" (server) and "connect" (client)
	Depends on the environment variable GLOBUS_DEVELOPMENT_PATH. 
	For instructions on how to set this variable see makefile.
listen.c
	Listens to a port (which port is printed on stdout) and waits
	for _one_ client to connect. Establishes a security context,
	prints out the subject of the certificate that the client
	provided and then exits.

connect.c
	Connects to a listen program on host argv[1], port argv[2].
	Establishes a security context and exits.

tokens.c
	Contains code that sends/receives a buffer of data.

Exercises:
	1.
	First do the GSSAPI exercise, then look at the code in listen.c
	and connect.c, make and try it out.


