mirror of
https://github.com/faucetsdn/ryu.git
synced 2026-05-08 22:06:10 +02:00
of14: Add experimenter property to table features reply unit test
Signed-off-by: Simon Horman <horms@verge.net.au> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
68e07855b5
commit
a0fef2d6df
Binary file not shown.
@ -1768,7 +1768,19 @@ x() ->
|
||||
arp_tha,ipv6_src,ipv6_dst,ipv6_flabel,
|
||||
icmpv6_type,icmpv6_code,ipv6_nd_target,
|
||||
ipv6_nd_sll,ipv6_nd_tll,mpls_label,mpls_tc,
|
||||
mpls_bos,pbb_isid]}]},
|
||||
mpls_bos,pbb_isid]},
|
||||
#ofp_table_feature_prop_experimenter{
|
||||
experimenter = 101,
|
||||
exp_type = 0,
|
||||
data = <<>>},
|
||||
#ofp_table_feature_prop_experimenter{
|
||||
experimenter = 101,
|
||||
exp_type = 1,
|
||||
data = <<1:32>>},
|
||||
#ofp_table_feature_prop_experimenter{
|
||||
experimenter = 101,
|
||||
exp_type = 2,
|
||||
data = <<1:32,2:32>>}]},
|
||||
#ofp_table_features{
|
||||
table_id = 1,name = <<"Flow Table 0x01">>,
|
||||
metadata_match = <<"\377\377\377\377\377\377\377\377">>,
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
{
|
||||
"OFPTableFeaturesStats": {
|
||||
"config": 0,
|
||||
"length": 1112,
|
||||
"length": 1168,
|
||||
"max_entries": 16777216,
|
||||
"metadata_match": 18446744073709551615,
|
||||
"metadata_write": 18446744073709551615,
|
||||
@ -1590,8 +1590,35 @@
|
||||
}
|
||||
],
|
||||
"type": 14
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"OFPTableFeaturePropExperimenter": {
|
||||
"length": 12,
|
||||
"type": 65534,
|
||||
"exp_type": 0,
|
||||
"experimenter": 101,
|
||||
"data": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"OFPTableFeaturePropExperimenter": {
|
||||
"length": 16,
|
||||
"type": 65534,
|
||||
"exp_type": 1,
|
||||
"experimenter": 101,
|
||||
"data": [1]
|
||||
}
|
||||
},
|
||||
{
|
||||
"OFPTableFeaturePropExperimenter": {
|
||||
"length": 20,
|
||||
"type": 65534,
|
||||
"exp_type": 2,
|
||||
"experimenter": 101,
|
||||
"data": [1, 2]
|
||||
}
|
||||
}
|
||||
],
|
||||
"table_id": 0
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user