Diff for /embedaddon/quagga/bgpd/bgpd.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 17:26:11 version 1.1.1.2, 2012/10/09 09:22:28
Line 162  struct bgp  Line 162  struct bgp 
   /* BGP graceful restart */    /* BGP graceful restart */
   u_int32_t restart_time;    u_int32_t restart_time;
   u_int32_t stalepath_time;    u_int32_t stalepath_time;
   
     /* Maximum-paths configuration */
     struct bgp_maxpaths_cfg {
       u_int16_t maxpaths_ebgp;
       u_int16_t maxpaths_ibgp;
     } maxpaths[AFI_MAX][SAFI_MAX];
 };  };
   
 /* BGP peer-group support. */  /* BGP peer-group support. */
Line 727  struct bgp_nlri Line 733  struct bgp_nlri
 #define BGP_DEFAULT_RESTART_TIME               120  #define BGP_DEFAULT_RESTART_TIME               120
 #define BGP_DEFAULT_STALEPATH_TIME             360  #define BGP_DEFAULT_STALEPATH_TIME             360
   
/* SAFI which used in open capability negotiation.  *//* RFC4364 */
#define BGP_SAFI_VPNV4                         128#define SAFI_MPLS_LABELED_VPN                  128
#define BGP_SAFI_VPNV6                         129 
   
 /* Max TTL value.  */  /* Max TTL value.  */
 #define TTL_MAX                                255  #define TTL_MAX                                255

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


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