Rich Lane | 9a3f1fd | 2013-05-10 16:29:17 -0700 | [diff] [blame] | 1 | -- binary |
2 | ff ff # type | ||||
3 | 00 10 # len | ||||
4 | 00 5c 16 c7 # experimenter | ||||
5 | 00 00 00 02 # subtype | ||||
6 | 12 34 56 78 # dst | ||||
7 | -- python | ||||
8 | ofp.action.bsn_set_tunnel_dst(dst=0x12345678) | ||||
9 | -- python pretty-printer | ||||
10 | bsn_set_tunnel_dst { dst = 0x12345678 } | ||||
Rich Lane | ccae031 | 2013-07-21 23:34:13 -0700 | [diff] [blame] | 11 | -- c |
12 | obj = of_action_bsn_set_tunnel_dst_new(OF_VERSION_1_0); | ||||
13 | of_action_bsn_set_tunnel_dst_dst_set(obj, 0x12345678); |