2 // ============================================================================
5 // TAO/tests/NestedUpcall
11 // A simple test of nested upcalls.
16 // ============================================================================
20 void ping
(in unsigned short time_to_live
);
21 // Decrements <time_to_live>. If <time_to_live> becomes zero, it
22 // stops. Otherwise, it pings the server.
27 void start
(in client c
,
28 in unsigned short time_to_live
);
29 // Turns around and starts pinging the client.
31 void ping
(in unsigned short time_to_live
);
32 // Decrements <time_to_live>. If <time_to_live> becomes zero, it
33 // stops. Otherwise, it pings the client.
35 oneway
void shutdown
();
36 // Shutdown the server.