blob: 9ef1642d3aff13f46d2c01901eaf75b578271546 [file] [log] [blame]
Murat Parlakisikf95672c2016-12-05 00:53:17 -08001
2#version 6
3
4struct of_oxs {
5 uint32_t type_len == ?;
6};
7
8struct of_oxs_duration : of_oxs {
9 uint32_t type_len == 0x80020008 ;
10 uint16_t value;
11};
12
13struct of_oxs_idle_time : of_oxs {
14 uint32_t type_len == 0x80020208 ;
15 uint16_t value;
16};
17
18struct of_oxs_flow_count : of_oxs {
19 uint32_t type_len == 0x80020404 ;
20 uint16_t value;
21};
22
23struct of_oxs_packet_count : of_oxs {
24 uint32_t type_len == 0x80020608 ;
25 uint16_t value;
26};
27
28struct of_oxs_byte_count : of_oxs {
29 uint32_t type_len == 0x80020808 ;
30 uint16_t value;
31};