/* This defines the commands as seen by both sides.  A command is
 * transmitted only in the Control Slot.
 */

#define CMD_NOOP	0	/* Do Nothing */
#define CMD_CREATE	1	/* Create a new connection */
#define CMD_DELETE	2	/* Delete an exisiting connection */
#define CMD_QUIT	3	/* Delete all connections and exit */

#define HIGHEST_COMMAND 3

extern int rpc_noop();
extern int rpc_create();
extern int rpc_delete();
extern int rpc_quit();

static int (*commands[])() = {
    rpc_noop,
    rpc_create,
    rpc_delete,
    rpc_quit
    };
