1 /** \file command.h The structure of server and afs commands. */
4 * Defines one command of para_server.
6 struct server_command
{
7 /** The name of the command. */
9 /** Pointer to the function that handles the command. */
10 int (*handler
)(struct stream_cipher_context
*, int, char * const * const);
11 /** The privileges a user must have to execute this command. */
13 /** One-line description of the command. */
14 const char *description
;
15 /** Summary of the command line options. */
17 /** The long help text. */