A Server program in C

#include <rpcrts.h> main() { int status; rpc_init(); /* (Not for VMS version or MoniCa) */ attach_filer(); /* Declare stub */ rpc_loop_server(&status, /* Loop until fatal error */ "RPC_CLIENT_NAME "); /* Note this name must be 40 characters long */ rpc_report_error(status); /* Report any error */ } /* end of main */ _________________________________________________________________
Tim BL