vtysh.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:2k
源码类别:

网络

开发平台:

Unix_Linux

  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. #ifndef VTYSH_H
  22. #define VTYSH_H
  23. #define VTYSH_ZEBRA  0x01
  24. #define VTYSH_RIPD   0x02
  25. #define VTYSH_RIPNGD 0x04
  26. #define VTYSH_OSPFD  0x08
  27. #define VTYSH_OSPF6D 0x10
  28. #define VTYSH_BGPD   0x20
  29. #define VTYSH_ALL    VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD
  30. #define VTYSH_RMAP   VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD
  31. #define VTYSH_INDEX_ZEBRA 0
  32. #define VTYSH_INDEX_RIP   1
  33. #define VTYSH_INDEX_RIPNG 2
  34. #define VTYSH_INDEX_OSPF  3
  35. #define VTYSH_INDEX_OSPF6 4
  36. #define VTYSH_INDEX_BGP   5
  37. #define VTYSH_INDEX_MAX   6
  38. /* UNIX domain socket path. */
  39. #define ZEBRA_PATH "/tmp/.zebra"
  40. #define RIP_PATH "/tmp/.ripd"
  41. #define RIPNG_PATH "/tmp/.ripngd"
  42. #define OSPF_PATH "/tmp/.ospfd"
  43. #define OSPF6_PATH "/tmp/.ospf6d"
  44. #define BGP_PATH "/tmp/.bgpd"
  45. /* vtysh local configuration file. */
  46. #define VTYSH_DEFAULT_CONFIG "vtysh.conf"
  47. void vtysh_init_vty ();
  48. void vtysh_init_cmd ();
  49. void vtysh_connect_all ();
  50. void vtysh_readline_init ();
  51. void vtysh_user_init ();
  52. void vtysh_execute (char *);
  53. void vtysh_execute_no_pager (char *);
  54. char *vtysh_prompt ();
  55. void vtysh_config_write ();
  56. int vtysh_config_from_file (struct vty *, FILE *);
  57. void vtysh_read_config (char *, char *, char *);
  58. void vtysh_config_parse (char *);
  59. void vtysh_config_dump (FILE *);
  60. void vtysh_config_init ();
  61. void vtysh_pager_init ();
  62. /* Child process execution flag. */
  63. extern int execute_flag;
  64. extern struct vty *vty;
  65. #endif /* VTYSH_H */