Diff for /embedaddon/quagga/ripd/rip_zebra.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 17:26:12 version 1.1.1.2, 2012/10/09 09:22:29
Line 46  rip_zebra_ipv4_add (struct prefix_ipv4 *p, struct in_a Line 46  rip_zebra_ipv4_add (struct prefix_ipv4 *p, struct in_a
       api.type = ZEBRA_ROUTE_RIP;        api.type = ZEBRA_ROUTE_RIP;
       api.flags = 0;        api.flags = 0;
       api.message = 0;        api.message = 0;
         api.safi = SAFI_UNICAST;
       SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);        SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
       api.nexthop_num = 1;        api.nexthop_num = 1;
       api.nexthop = &nexthop;        api.nexthop = &nexthop;
Line 76  rip_zebra_ipv4_delete (struct prefix_ipv4 *p, struct i Line 77  rip_zebra_ipv4_delete (struct prefix_ipv4 *p, struct i
       api.type = ZEBRA_ROUTE_RIP;        api.type = ZEBRA_ROUTE_RIP;
       api.flags = 0;        api.flags = 0;
       api.message = 0;        api.message = 0;
         api.safi = SAFI_UNICAST;
       SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);        SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
       api.nexthop_num = 1;        api.nexthop_num = 1;
       api.nexthop = &nexthop;        api.nexthop = &nexthop;
Line 205  static struct { Line 207  static struct {
   {ZEBRA_ROUTE_CONNECT, 1, "connected"},    {ZEBRA_ROUTE_CONNECT, 1, "connected"},
   {ZEBRA_ROUTE_STATIC,  1, "static"},    {ZEBRA_ROUTE_STATIC,  1, "static"},
   {ZEBRA_ROUTE_OSPF,    1, "ospf"},    {ZEBRA_ROUTE_OSPF,    1, "ospf"},
  {ZEBRA_ROUTE_BGP,     1, "bgp"},  {ZEBRA_ROUTE_BGP,     2, "bgp"},
   {ZEBRA_ROUTE_BABEL,   2, "babel"},
   {0, 0, NULL}    {0, 0, NULL}
 };  };
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


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