paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 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 | |
paul | 5b73a67 | 2004-07-23 15:26:14 +0000 | [diff] [blame] | 25 | #include "rib.h" |
| 26 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 27 | /* Default port information. */ |
| 28 | #define ZEBRA_PORT 2600 |
| 29 | #define ZEBRA_VTY_PORT 2601 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 30 | |
| 31 | /* Default configuration filename. */ |
| 32 | #define DEFAULT_CONFIG_FILE "zebra.conf" |
| 33 | |
| 34 | /* Client structure. */ |
| 35 | struct zserv |
| 36 | { |
| 37 | /* Client file descriptor. */ |
| 38 | int sock; |
| 39 | |
| 40 | /* Input/output buffer to the client. */ |
| 41 | struct stream *ibuf; |
| 42 | struct stream *obuf; |
| 43 | |
| 44 | /* Threads for read/write. */ |
| 45 | struct thread *t_read; |
| 46 | struct thread *t_write; |
| 47 | |
| 48 | /* default routing table this client munges */ |
| 49 | int rtm_table; |
| 50 | |
| 51 | /* This client's redistribute flag. */ |
| 52 | u_char redist[ZEBRA_ROUTE_MAX]; |
| 53 | |
| 54 | /* Redistribute default route flag. */ |
| 55 | u_char redist_default; |
| 56 | |
| 57 | /* Interface information. */ |
| 58 | u_char ifinfo; |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 59 | |
| 60 | /* Router-id information. */ |
| 61 | u_char ridinfo; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 62 | }; |
| 63 | |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 64 | /* Zebra instance */ |
| 65 | struct zebra_t |
| 66 | { |
| 67 | /* Thread master */ |
| 68 | struct thread_master *master; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 69 | struct list *client_list; |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 70 | |
| 71 | /* default table */ |
| 72 | int rtm_table_default; |
| 73 | |
| 74 | }; |
| 75 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 76 | /* Count prefix size from mask length */ |
| 77 | #define PSIZE(a) (((a) + 7) / (8)) |
| 78 | |
| 79 | /* Prototypes. */ |
| 80 | void zebra_init (); |
| 81 | void zebra_if_init (); |
| 82 | void hostinfo_get (); |
| 83 | void rib_init (); |
| 84 | void interface_list (); |
| 85 | void kernel_init (); |
| 86 | void route_read (); |
| 87 | void rtadv_init (); |
| 88 | void zebra_snmp_init (); |
| 89 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 90 | int zsend_interface_add (struct zserv *, struct interface *); |
| 91 | #if (defined(RTM_IFANNOUNCE) || defined(HAVE_NETLINK)) |
| 92 | int zsend_interface_delete (struct zserv *, struct interface *); |
hasso | 726f9b2 | 2003-05-25 21:04:54 +0000 | [diff] [blame] | 93 | #endif |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 94 | int zsend_interface_address (int, struct zserv *, struct interface *, |
| 95 | struct connected *); |
| 96 | int zsend_interface_update (int, struct zserv *, struct interface *); |
| 97 | int zsend_route_multipath (int, struct zserv *, struct prefix *, struct rib *); |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 98 | int zsend_router_id_update(struct zserv *, struct prefix *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 99 | |
| 100 | extern pid_t pid; |
| 101 | extern pid_t old_pid; |
| 102 | |
| 103 | #endif /* _ZEBRA_ZEBRA_H */ |