/*
 * ---------------------------------------------------------------------
 * Nmae: readme
 * Overview of files for the osv_finder (Host OS version finder) program
 * ---------------------------------------------------------------------
 */

CS515  UNIX NETWORK PROGRAMMING
Homework 3  Due date: Mar. 26, 2002
Student: Huang, Hao  (2860A)

Program Title: Host OS version finder
Objective: to practice RPC programming using rpcgen

Requirements
  - Design and implement an RPC server and a client
  - Client usage: osv_finder <hostname> | <host_address>
  - Print out the result on the standard output
  - osv_finder must be implemented with the following guidelines
     . Must use RPC
     . The server may use uname to get the OS version on the host
     . Must support error handling

Deliverables
  - Hand in only the original source files! (i.e., no source files that
    are created by rpcgen)

Files
  - readme       : Overview of the homework
  - makefile     : makefile for the osv_finder program
  - myerror.h    : header file for error handle
  - libmyerror.a : library of the error handle
  - server.c     : server side program
  - client.c     : client side program
  - killrpc      : a shell utility program for kill server deamon 
  - client_side_result : testing result on client side
  - server_side_result : testing result on server side

