ONC+ 開発ガイド

時刻サーバープログラム (rpcgen)


例 D–4 rpcgen プログラム: time.x

/*
 * time.x: リモートタイムプロトコル
 */
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