1 //=============================================================================
5 * A simple test of nested upcalls.
8 * @author Irfan Pyarali
10 //=============================================================================
15 void ping
(in unsigned short time_to_live
);
16 // Decrements <time_to_live>. If <time_to_live> becomes zero, it
17 // stops. Otherwise, it pings the server.
22 void start
(in client c
,
23 in unsigned short time_to_live
);
24 // Turns around and starts pinging the client.
26 void ping
(in unsigned short time_to_live
);
27 // Decrements <time_to_live>. If <time_to_live> becomes zero, it
28 // stops. Otherwise, it pings the client.
30 oneway
void shutdown
();
31 // Shutdown the server.