blob: 0a2499356a9210a94ee1210c06878d899566ebbd [file] [log] [blame]
Rich Lanec9fc57d2013-05-16 16:39:12 -07001-- binary
204 0b # version, type
300 48 # length
412 34 56 78 # xid
5fe dc ba 98 76 54 32 10 # cookie
642 68 # priority
702 # reason
814 # table_id
900 00 00 0a # duration_sec
1000 00 03 e8 # duration_nsec
1100 05 # idle_timeout
1200 1e # hard_timeout
1300 00 00 00 00 00 00 01 # packet_count
1400 00 00 00 00 00 00 02 # byte_count
1500 01 # match.type
1600 16 # match.length
1780 00 2A 02 # match.oxm_list[0].type_len
1800 01 # match.oxm_list[0].value
1980 00 01 08 # match.oxm_list[1].type_len
2000 00 00 04 # match.oxm_list[1].value
2100 00 00 05 # match.oxm_list[1].mask
2200 00 # match.pad
23-- python
24ofp.message.flow_removed(
25 xid=0x12345678,
26 cookie=0xFEDCBA9876543210,
27 priority=17000,
28 reason=ofp.OFPRR_DELETE,
29 table_id=20,
30 duration_sec=10,
31 duration_nsec=1000,
32 idle_timeout=5,
33 hard_timeout=30,
34 packet_count=1,
35 byte_count=2,
36 match=ofp.match(oxm_list=[
37 ofp.oxm.arp_op(value=1),
38 ofp.oxm.in_port_masked(value=4, value_mask=5)]))