2001-06-13 21:52:19 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
|
|
|
|
* based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
|
|
|
|
* Internet Initiative Japan, Inc (IIJ)
|
|
|
|
* All rights reserved.
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
2001-06-13 21:52:19 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
2001-06-13 21:52:19 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1995-01-31 06:29:58 +00:00
|
|
|
*/
|
|
|
|
|
1997-11-22 03:37:54 +00:00
|
|
|
struct cmdtab;
|
1998-04-07 00:54:26 +00:00
|
|
|
struct bundle;
|
|
|
|
struct datalink;
|
|
|
|
struct prompt;
|
1997-11-22 03:37:54 +00:00
|
|
|
|
|
|
|
struct cmdargs {
|
1998-02-17 19:28:01 +00:00
|
|
|
struct cmdtab const *cmdtab; /* The entire command table */
|
|
|
|
struct cmdtab const *cmd; /* This command entry */
|
1998-04-03 19:26:02 +00:00
|
|
|
int argc; /* Number of arguments (excluding cmd */
|
1998-04-14 23:17:24 +00:00
|
|
|
int argn; /* Argument to start processing from */
|
1998-04-03 19:26:02 +00:00
|
|
|
char const *const *argv; /* Arguments */
|
|
|
|
struct bundle *bundle; /* Our bundle */
|
|
|
|
struct datalink *cx; /* Our context */
|
|
|
|
struct prompt *prompt; /* Who executed us */
|
1997-11-22 03:37:54 +00:00
|
|
|
};
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
struct cmdtab {
|
1997-11-22 03:37:54 +00:00
|
|
|
const char *name;
|
|
|
|
const char *alias;
|
|
|
|
int (*func) (struct cmdargs const *);
|
1997-08-25 00:29:32 +00:00
|
|
|
u_char lauth;
|
1997-11-22 03:37:54 +00:00
|
|
|
const char *helpmes;
|
|
|
|
const char *syntax;
|
|
|
|
const void *args;
|
1995-01-31 06:29:58 +00:00
|
|
|
};
|
1997-09-22 00:46:56 +00:00
|
|
|
|
1998-04-16 00:26:21 +00:00
|
|
|
#define NEG_ACCEPTED (1)
|
|
|
|
#define NEG_ENABLED (2)
|
|
|
|
#define IsAccepted(x) ((x) & NEG_ACCEPTED)
|
|
|
|
#define IsEnabled(x) ((x) & NEG_ENABLED)
|
1997-10-26 01:04:02 +00:00
|
|
|
|
1998-04-30 23:53:56 +00:00
|
|
|
extern const char Version[];
|
1997-10-26 01:04:02 +00:00
|
|
|
|
1999-02-11 10:14:08 +00:00
|
|
|
extern void command_Expand(char **, int, char const *const *, struct bundle *,
|
1999-06-09 08:47:36 +00:00
|
|
|
int, pid_t);
|
2001-11-03 21:45:32 +00:00
|
|
|
extern void command_Free(int, char **);
|
2000-03-14 01:47:31 +00:00
|
|
|
extern int command_Expand_Interpret(char *, int, char *vector[MAXARGS], int);
|
1998-06-15 19:06:25 +00:00
|
|
|
extern int command_Interpret(char *, int, char *vector[MAXARGS]);
|
1998-05-01 19:26:12 +00:00
|
|
|
extern void command_Run(struct bundle *, int, char const *const *,
|
1998-06-15 19:05:51 +00:00
|
|
|
struct prompt *, const char *, struct datalink *);
|
1999-12-20 20:30:02 +00:00
|
|
|
extern int command_Decode(struct bundle *, char *, int, struct prompt *,
|
1998-05-01 19:26:12 +00:00
|
|
|
const char *);
|
|
|
|
extern struct link *command_ChooseLink(struct cmdargs const *);
|
|
|
|
extern const char *command_ShowNegval(unsigned);
|
2000-03-14 01:47:31 +00:00
|
|
|
|