]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zserv.h
2004-05-08 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / zebra / zserv.h
CommitLineData
718e3744 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
22#ifndef _ZEBRA_ZSERV_H
23#define _ZEBRA_ZSERV_H
24
25/* Default port information. */
26#define ZEBRA_PORT 2600
27#define ZEBRA_VTY_PORT 2601
718e3744 28
29/* Default configuration filename. */
30#define DEFAULT_CONFIG_FILE "zebra.conf"
31
32/* Client structure. */
33struct zserv
34{
35 /* Client file descriptor. */
36 int sock;
37
38 /* Input/output buffer to the client. */
39 struct stream *ibuf;
40 struct stream *obuf;
41
42 /* Threads for read/write. */
43 struct thread *t_read;
44 struct thread *t_write;
45
46 /* default routing table this client munges */
47 int rtm_table;
48
49 /* This client's redistribute flag. */
50 u_char redist[ZEBRA_ROUTE_MAX];
51
52 /* Redistribute default route flag. */
53 u_char redist_default;
54
55 /* Interface information. */
56 u_char ifinfo;
57};
58
b21b19c5 59/* Zebra instance */
60struct zebra_t
61{
62 /* Thread master */
63 struct thread_master *master;
64 list client_list;
65
66 /* default table */
67 int rtm_table_default;
68
69};
70
718e3744 71/* Count prefix size from mask length */
72#define PSIZE(a) (((a) + 7) / (8))
73
74/* Prototypes. */
75void zebra_init ();
76void zebra_if_init ();
77void hostinfo_get ();
78void rib_init ();
79void interface_list ();
80void kernel_init ();
81void route_read ();
82void rtadv_init ();
83void zebra_snmp_init ();
84
85int
86zsend_interface_add (struct zserv *, struct interface *);
87int
88zsend_interface_delete (struct zserv *, struct interface *);
89
90int
91zsend_interface_address_add (struct zserv *, struct interface *,
92 struct connected *);
93
94int
95zsend_interface_address_delete (struct zserv *, struct interface *,
96 struct connected *);
97
98int
99zsend_interface_up (struct zserv *, struct interface *);
100
101int
102zsend_interface_down (struct zserv *, struct interface *);
103
726f9b2b 104#if 0
105#warning oldies
718e3744 106int
107zsend_ipv4_add (struct zserv *client, int type, int flags,
108 struct prefix_ipv4 *p, struct in_addr *nexthop,
109 unsigned int ifindex);
110
111int
112zsend_ipv4_delete (struct zserv *client, int type, int flags,
113 struct prefix_ipv4 *p, struct in_addr *nexthop,
114 unsigned int ifindex);
726f9b2b 115#endif
718e3744 116
117int
118zsend_ipv4_add_multipath (struct zserv *, struct prefix *, struct rib *);
119
120int
121zsend_ipv4_delete_multipath (struct zserv *, struct prefix *, struct rib *);
122
123#ifdef HAVE_IPV6
726f9b2b 124#if 0
125#warning oldies
718e3744 126int
127zsend_ipv6_add (struct zserv *client, int type, int flags,
128 struct prefix_ipv6 *p, struct in6_addr *nexthop,
129 unsigned int ifindex);
130
131int
132zsend_ipv6_delete (struct zserv *client, int type, int flags,
133 struct prefix_ipv6 *p, struct in6_addr *nexthop,
134 unsigned int ifindex);
726f9b2b 135#endif
718e3744 136
137int
138zsend_ipv6_add_multipath (struct zserv *, struct prefix *, struct rib *);
139
140int
141zsend_ipv6_delete_multipath (struct zserv *, struct prefix *, struct rib *);
142
143#endif /* HAVE_IPV6 */
144
145extern pid_t pid;
146extern pid_t old_pid;
147
148#endif /* _ZEBRA_ZEBRA_H */