File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / quagga / zebra / kernel_null.c
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Sun Jul 21 23:54:41 2013 UTC (11 years ago) by misho
Branches: quagga, MAIN
CVS tags: v0_99_22p0, v0_99_22, HEAD
0.99.22

    1: /* NULL kernel methods for testing. */
    2: 
    3: #include <zebra.h>
    4: #include <log.h>
    5: 
    6: #include "zebra/zserv.h"
    7: #include "zebra/rt.h"
    8: #include "zebra/redistribute.h"
    9: #include "zebra/connected.h"
   10: 
   11: int kernel_add_ipv4 (struct prefix *a, struct rib *b) { return 0; }
   12: #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
   13: #pragma weak kernel_delete_ipv4 = kernel_add_ipv4
   14: #else
   15: int kernel_delete_ipv4 (struct prefix *a, struct rib *b) { return 0; }
   16: #endif
   17: 
   18: int kernel_add_ipv6 (struct prefix *a, struct rib *b) { return 0; }
   19: #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
   20: #pragma weak kernel_delete_ipv6 = kernel_add_ipv6
   21: #else
   22: int kernel_delete_ipv6 (struct prefix *a, struct rib *b) { return 0; }
   23: #endif
   24: 
   25: int kernel_delete_ipv6_old (struct prefix_ipv6 *dest, struct in6_addr *gate,
   26:                             unsigned int index, int flags, int table)
   27: { return 0; }
   28: 
   29: int kernel_add_route (struct prefix_ipv4 *a, struct in_addr *b, int c, int d)
   30: { return 0; }
   31: 
   32: int kernel_address_add_ipv4 (struct interface *a, struct connected *b)
   33: {
   34:   zlog_debug ("%s", __func__);
   35:   SET_FLAG (b->conf, ZEBRA_IFC_REAL);
   36:   connected_add_ipv4 (a, 0, &b->address->u.prefix4, b->address->prefixlen, 
   37:                       (b->destination ? &b->destination->u.prefix4 : NULL), 
   38:                       NULL);
   39:   return 0;
   40: }
   41: 
   42: int kernel_address_delete_ipv4 (struct interface *a, struct connected *b)
   43: {
   44:   zlog_debug ("%s", __func__);
   45:   connected_delete_ipv4 (a, 0, &b->address->u.prefix4, b->address->prefixlen, 
   46:                          (b->destination ? &b->destination->u.prefix4 : NULL));
   47:   return 0;
   48: }
   49: 
   50: void kernel_init (void) { return; }
   51: #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
   52: #pragma weak route_read = kernel_init
   53: #else
   54: void route_read (void) { return; }
   55: #endif

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