File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / bird / proto / static / static.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Aug 22 12:33:54 2017 UTC (6 years, 10 months ago) by misho
Branches: bird, MAIN
CVS tags: v1_6_8p3, v1_6_3p0, v1_6_3, HEAD
bird 1.6.3

/*
 *	BIRD -- Static Route Generator
 *
 *	(c) 1998--2000 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#ifndef _BIRD_STATIC_H_
#define _BIRD_STATIC_H_

#include "nest/route.h"
#include "nest/bfd.h"

struct static_config {
  struct proto_config c;
  list iface_routes;		/* Routes to search on interface events */
  list other_routes;		/* Routes hooked to neighbor cache and reject routes */
  int check_link;			/* Whether iface link state is used */
  struct rtable_config *igp_table;	/* Table used for recursive next hop lookups */
};


void static_init_config(struct static_config *);

struct static_route {
  node n;
  struct static_route *chain;		/* Next for the same neighbor */
  ip_addr net;				/* Network we route */
  int masklen;				/* Mask length */
  int dest;				/* Destination type (RTD_*) */
  ip_addr via;				/* Destination router */
  struct iface *via_if;			/* Destination iface, for link-local vias */
  struct neighbor *neigh;
  byte *if_name;			/* Name for RTD_DEVICE routes */
  struct static_route *mp_next;		/* Nexthops for RTD_MULTIPATH routes */
  struct f_inst *cmds;			/* List of commands for setting attributes */
  int installed;			/* Installed in rt table, -1 for reinstall */
  int use_bfd;				/* Configured to use BFD */
  struct bfd_request *bfd_req;		/* BFD request, if BFD is used */
};

/* Dummy nodes (parts of multipath route) abuses masklen field for weight
   and if_name field for a ptr to the master (RTD_MULTIPATH) node. */


#define RTDX_RECURSIVE 0x7f		/* Phony dest value for recursive routes */

void static_show(struct proto *);

#endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>