paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* Virtual terminal interface shell. |
| 2 | * Copyright (C) 2000 Kunihiro Ishiguro |
| 3 | * |
| 4 | * This file is part of GNU Zebra. |
| 5 | * |
| 6 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2, or (at your option) any |
| 9 | * later version. |
| 10 | * |
| 11 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 18 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | * 02111-1307, USA. |
| 20 | */ |
| 21 | |
| 22 | #ifndef VTYSH_H |
| 23 | #define VTYSH_H |
| 24 | |
| 25 | #define VTYSH_ZEBRA 0x01 |
| 26 | #define VTYSH_RIPD 0x02 |
| 27 | #define VTYSH_RIPNGD 0x04 |
| 28 | #define VTYSH_OSPFD 0x08 |
| 29 | #define VTYSH_OSPF6D 0x10 |
| 30 | #define VTYSH_BGPD 0x20 |
hasso | c25e458 | 2003-12-23 10:39:08 +0000 | [diff] [blame] | 31 | #define VTYSH_ISISD 0x40 |
hasso | 95e735b | 2004-08-26 13:08:30 +0000 | [diff] [blame] | 32 | #define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD |
| 33 | #define VTYSH_RMAP VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD |
| 34 | #define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 35 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 36 | /* vtysh local configuration file. */ |
| 37 | #define VTYSH_DEFAULT_CONFIG "vtysh.conf" |
| 38 | |
ajs | b1aa147 | 2005-01-28 21:11:46 +0000 | [diff] [blame] | 39 | void vtysh_init_vty (void); |
| 40 | void vtysh_init_cmd (void); |
Andrew J. Schorr | f366ad3 | 2006-07-27 18:01:41 +0000 | [diff] [blame^] | 41 | extern int vtysh_connect_all (const char *optional_daemon_name); |
ajs | b1aa147 | 2005-01-28 21:11:46 +0000 | [diff] [blame] | 42 | void vtysh_readline_init (void); |
| 43 | void vtysh_user_init (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 44 | |
hasso | dda0952 | 2004-10-07 21:40:25 +0000 | [diff] [blame] | 45 | void vtysh_execute (const char *); |
| 46 | void vtysh_execute_no_pager (const char *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 47 | |
ajs | b1aa147 | 2005-01-28 21:11:46 +0000 | [diff] [blame] | 48 | char *vtysh_prompt (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 49 | |
ajs | b1aa147 | 2005-01-28 21:11:46 +0000 | [diff] [blame] | 50 | void vtysh_config_write (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 51 | |
| 52 | int vtysh_config_from_file (struct vty *, FILE *); |
| 53 | |
hasso | e7168df | 2004-10-03 20:11:32 +0000 | [diff] [blame] | 54 | int vtysh_read_config (char *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 55 | |
| 56 | void vtysh_config_parse (char *); |
| 57 | |
| 58 | void vtysh_config_dump (FILE *); |
| 59 | |
ajs | b1aa147 | 2005-01-28 21:11:46 +0000 | [diff] [blame] | 60 | void vtysh_config_init (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 61 | |
ajs | b1aa147 | 2005-01-28 21:11:46 +0000 | [diff] [blame] | 62 | void vtysh_pager_init (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 63 | |
| 64 | /* Child process execution flag. */ |
| 65 | extern int execute_flag; |
| 66 | |
| 67 | extern struct vty *vty; |
| 68 | |
| 69 | #endif /* VTYSH_H */ |