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

网络

开发平台:

Unix_Linux

  1. /* Zebra daemon server header.
  2.  * Copyright (C) 1997, 98 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 _ZEBRA_ZSERV_H
  22. #define _ZEBRA_ZSERV_H
  23. /* Default port information. */
  24. #define ZEBRA_PORT                    2600
  25. #define ZEBRA_VTY_PORT                2601
  26. #define ZEBRA_VTYSH_PATH              "/tmp/.zebra"
  27. #define ZEBRA_SERV_PATH               "/tmp/.zserv"
  28. /* Default configuration filename. */
  29. #define DEFAULT_CONFIG_FILE "zebra.conf"
  30. /* Client structure. */
  31. struct zserv
  32. {
  33.   /* Client file descriptor. */
  34.   int sock;
  35.   /* Input/output buffer to the client. */
  36.   struct stream *ibuf;
  37.   struct stream *obuf;
  38.   /* Threads for read/write. */
  39.   struct thread *t_read;
  40.   struct thread *t_write;
  41.   /* default routing table this client munges */
  42.   int rtm_table;
  43.   /* This client's redistribute flag. */
  44.   u_char redist[ZEBRA_ROUTE_MAX];
  45.   /* Redistribute default route flag. */
  46.   u_char redist_default;
  47.   /* Interface information. */
  48.   u_char ifinfo;
  49. };
  50. /* Count prefix size from mask length */
  51. #define PSIZE(a) (((a) + 7) / (8))
  52. /* Prototypes. */
  53. void zebra_init ();
  54. void zebra_if_init ();
  55. void hostinfo_get ();
  56. void rib_init ();
  57. void interface_list ();
  58. void kernel_init ();
  59. void route_read ();
  60. void rtadv_init ();
  61. void zebra_snmp_init ();
  62. int
  63. zsend_interface_add (struct zserv *, struct interface *);
  64. int
  65. zsend_interface_delete (struct zserv *, struct interface *);
  66. int
  67. zsend_interface_address_add (struct zserv *, struct interface *,
  68.      struct connected *);
  69. int
  70. zsend_interface_address_delete (struct zserv *, struct interface *,
  71. struct connected *);
  72. int
  73. zsend_interface_up (struct zserv *, struct interface *);
  74. int
  75. zsend_interface_down (struct zserv *, struct interface *);
  76. int
  77. zsend_ipv4_add (struct zserv *client, int type, int flags,
  78. struct prefix_ipv4 *p, struct in_addr *nexthop,
  79. unsigned int ifindex);
  80. int
  81. zsend_ipv4_delete (struct zserv *client, int type, int flags,
  82.    struct prefix_ipv4 *p, struct in_addr *nexthop,
  83.    unsigned int ifindex);
  84. int
  85. zsend_ipv4_add_multipath (struct zserv *, struct prefix *, struct rib *);
  86. int
  87. zsend_ipv4_delete_multipath (struct zserv *, struct prefix *, struct rib *);
  88. #ifdef HAVE_IPV6
  89. int
  90. zsend_ipv6_add (struct zserv *client, int type, int flags,
  91. struct prefix_ipv6 *p, struct in6_addr *nexthop,
  92. unsigned int ifindex);
  93. int
  94. zsend_ipv6_delete (struct zserv *client, int type, int flags,
  95.    struct prefix_ipv6 *p, struct in6_addr *nexthop,
  96.    unsigned int ifindex);
  97. int
  98. zsend_ipv6_add_multipath (struct zserv *, struct prefix *, struct rib *);
  99. int
  100. zsend_ipv6_delete_multipath (struct zserv *, struct prefix *, struct rib *);
  101. #endif /* HAVE_IPV6 */
  102. extern pid_t pid;
  103. extern pid_t old_pid;
  104. #endif /* _ZEBRA_ZEBRA_H */