ONC+ Developer's Guide

Time Server Program (rpcgen)


Example D–4 rpcgen Program: time.x

/*
 * time.x: Remote time protocol
 */
program TIMEPROG {
 	version TIMEVERS {
 			unsigned int TIMEGET(void) = 1;
 	} = 1;
} = 0x20000044;

#ifdef RPC_SVC
%int *
%timeget_1()
%{
%	static int thetime;
%
%	thetime = time(0);
%	return (&thetime);
%}
#endif