Diff for /embedaddon/quagga/tests/bgp_capability_test.c 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:29
Line 96  static struct test_segment mp_segments[] = Line 96  static struct test_segment mp_segments[] =
   },    },
   /* 6 */    /* 6 */
   { "MP3",    { "MP3",
    "MP IP6/VPNv4",    "MP IP6/MPLS-labeled VPN",
     { CAPABILITY_CODE_MP, 0x4, 0x0, 0x2, 0x0, 0x80 },      { CAPABILITY_CODE_MP, 0x4, 0x0, 0x2, 0x0, 0x80 },
    6, SHOULD_PARSE, 0, /* parses, but invalid afi,safi */    6, SHOULD_PARSE, 0,
    1, AFI_IP6, BGP_SAFI_VPNV4, INVALID_AFI,    1, AFI_IP6, SAFI_MPLS_LABELED_VPN, VALID_AFI,
   },    },
   /* 7 */    /* 7 */
   { "MP5",    { "MP5",
Line 110  static struct test_segment mp_segments[] = Line 110  static struct test_segment mp_segments[] =
   },    },
   /* 8 */    /* 8 */
   { "MP6",    { "MP6",
    "MP IP4/VPNv4",    "MP IP4/MPLS-laveled VPN",
     { CAPABILITY_CODE_MP, 0x4, 0x0, 0x1, 0x0, 0x80 },      { CAPABILITY_CODE_MP, 0x4, 0x0, 0x1, 0x0, 0x80 },
     6, SHOULD_PARSE, 0,      6, SHOULD_PARSE, 0,
    1, AFI_IP, BGP_SAFI_VPNV4, VALID_AFI,    1, AFI_IP, SAFI_MPLS_LABELED_VPN, VALID_AFI,
   },      },  
   /* 9 */  
   { "MP7",  
     "MP IP4/VPNv6",  
     { CAPABILITY_CODE_MP, 0x4, 0x0, 0x1, 0x0, 0x81 },  
     6, SHOULD_PARSE, 0, /* parses, but invalid afi,safi tuple */  
     1, AFI_IP, BGP_SAFI_VPNV6, INVALID_AFI,  
   },  
   /* 10 */    /* 10 */
   { "MP8",    { "MP8",
    "MP unknown AFI",    "MP unknown AFI/SAFI",
     { CAPABILITY_CODE_MP, 0x4, 0x0, 0xa, 0x0, 0x81 },      { CAPABILITY_CODE_MP, 0x4, 0x0, 0xa, 0x0, 0x81 },
     6, SHOULD_PARSE, 0,      6, SHOULD_PARSE, 0,
     1, 0xa, 0x81, INVALID_AFI, /* parses, but unknown */      1, 0xa, 0x81, INVALID_AFI, /* parses, but unknown */

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


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