]> git.sur5r.net Git - openldap/blob - clients/rcpt500/cmds.c
Add OpenLDAP RCSid to *.[ch] in clients, libraries, and servers.
[openldap] / clients / rcpt500 / cmds.c
1 /* $OpenLDAP$ */
2 /*
3  * cmds.c: command table for rcpt500 (X.500 email query responder)
4  *
5  * 18 June 1992 by Mark C Smith
6  * Copyright (c) 1992 The Regents of The University of Michigan
7  * All Rights Reserved
8  */
9
10 #include "portable.h"
11
12 #include <ac/stdlib.h>
13 #include "rcpt500.h"
14
15 struct command cmds[] = {
16         "help",         help_cmd,       /* help must be the first command */
17         "query for",    query_cmd,      /* must come before "query for" */
18         "query",        query_cmd,
19         "find",         query_cmd,
20         "read",         query_cmd,
21         "search for",   query_cmd,      /* must come before "search" */
22         "search",       query_cmd,
23         "lookup",       query_cmd,
24         "look up",      query_cmd,
25         "show",         query_cmd,
26         "finger",       query_cmd,
27         "whois",        query_cmd,
28         "who is",       query_cmd,
29         "locate",       query_cmd,
30         NULL,           NULL            /* end of command list */
31 };