Annotation of embedaddon/quagga/zebra/kernel_null.c, revision 1.1.1.2

1.1       misho       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; }
1.1.1.2 ! misho      12: #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
1.1       misho      13: #pragma weak kernel_delete_ipv4 = kernel_add_ipv4
1.1.1.2 ! misho      14: #else
        !            15: int kernel_delete_ipv4 (struct prefix *a, struct rib *b) { return 0; }
        !            16: #endif
        !            17: 
1.1       misho      18: int kernel_add_ipv6 (struct prefix *a, struct rib *b) { return 0; }
1.1.1.2 ! misho      19: #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
1.1       misho      20: #pragma weak kernel_delete_ipv6 = kernel_add_ipv6
1.1.1.2 ! misho      21: #else
        !            22: int kernel_delete_ipv6 (struct prefix *a, struct rib *b) { return 0; }
        !            23: #endif
        !            24: 
1.1       misho      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; }
1.1.1.2 ! misho      51: #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
1.1       misho      52: #pragma weak route_read = kernel_init
1.1.1.2 ! misho      53: #else
        !            54: void route_read (void) { return; }
        !            55: #endif

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