1995-01-31 01:29:58 -05:00
|
|
|
/*
|
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
|
* by the Internet Initiative Japan. The name of the
|
|
|
|
|
* IIJ may not be used to endorse or promote products derived
|
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
*
|
1999-08-27 21:35:59 -04:00
|
|
|
* $FreeBSD$
|
1995-01-31 01:29:58 -05:00
|
|
|
*
|
|
|
|
|
* TODO:
|
|
|
|
|
*/
|
|
|
|
|
|
1997-11-21 22:37:54 -05:00
|
|
|
struct cmdtab;
|
1998-04-06 20:54:26 -04:00
|
|
|
struct bundle;
|
|
|
|
|
struct datalink;
|
|
|
|
|
struct prompt;
|
1997-11-21 22:37:54 -05:00
|
|
|
|
|
|
|
|
struct cmdargs {
|
1998-02-17 14:28:01 -05:00
|
|
|
struct cmdtab const *cmdtab; /* The entire command table */
|
|
|
|
|
struct cmdtab const *cmd; /* This command entry */
|
1998-04-03 14:26:02 -05:00
|
|
|
int argc; /* Number of arguments (excluding cmd */
|
1998-04-14 19:17:24 -04:00
|
|
|
int argn; /* Argument to start processing from */
|
1998-04-03 14:26:02 -05:00
|
|
|
char const *const *argv; /* Arguments */
|
|
|
|
|
struct bundle *bundle; /* Our bundle */
|
|
|
|
|
struct datalink *cx; /* Our context */
|
|
|
|
|
struct prompt *prompt; /* Who executed us */
|
1997-11-21 22:37:54 -05:00
|
|
|
};
|
|
|
|
|
|
1995-01-31 01:29:58 -05:00
|
|
|
struct cmdtab {
|
1997-11-21 22:37:54 -05:00
|
|
|
const char *name;
|
|
|
|
|
const char *alias;
|
|
|
|
|
int (*func) (struct cmdargs const *);
|
1997-08-24 20:29:32 -04:00
|
|
|
u_char lauth;
|
1997-11-21 22:37:54 -05:00
|
|
|
const char *helpmes;
|
|
|
|
|
const char *syntax;
|
|
|
|
|
const void *args;
|
1995-01-31 01:29:58 -05:00
|
|
|
};
|
1997-09-21 20:46:56 -04:00
|
|
|
|
1998-04-15 20:26:21 -04:00
|
|
|
#define NEG_ACCEPTED (1)
|
|
|
|
|
#define NEG_ENABLED (2)
|
|
|
|
|
#define IsAccepted(x) ((x) & NEG_ACCEPTED)
|
|
|
|
|
#define IsEnabled(x) ((x) & NEG_ENABLED)
|
1997-10-25 21:04:02 -04:00
|
|
|
|
1998-04-30 19:53:56 -04:00
|
|
|
extern const char Version[];
|
1997-10-25 21:04:02 -04:00
|
|
|
|
1999-02-11 05:14:08 -05:00
|
|
|
extern void command_Expand(char **, int, char const *const *, struct bundle *,
|
1999-06-09 04:47:36 -04:00
|
|
|
int, pid_t);
|
2000-03-13 20:47:31 -05:00
|
|
|
extern int command_Expand_Interpret(char *, int, char *vector[MAXARGS], int);
|
1998-06-15 15:06:25 -04:00
|
|
|
extern int command_Interpret(char *, int, char *vector[MAXARGS]);
|
1998-05-01 15:26:12 -04:00
|
|
|
extern void command_Run(struct bundle *, int, char const *const *,
|
1998-06-15 15:05:51 -04:00
|
|
|
struct prompt *, const char *, struct datalink *);
|
1999-12-20 15:30:02 -05:00
|
|
|
extern int command_Decode(struct bundle *, char *, int, struct prompt *,
|
1998-05-01 15:26:12 -04:00
|
|
|
const char *);
|
|
|
|
|
extern struct link *command_ChooseLink(struct cmdargs const *);
|
|
|
|
|
extern const char *command_ShowNegval(unsigned);
|
2000-03-13 20:47:31 -05:00
|
|
|
|