blob: 7a5747cd466d52d4e5fcb435d917a6c569665d2b [file] [log] [blame]
Rich Lane9a3f1fd2013-05-10 16:29:17 -07001-- binary
2ff ff # type
300 10 # len
400 5c 16 c7 # experimenter
500 00 00 02 # subtype
612 34 56 78 # dst
7-- python
8ofp.action.bsn_set_tunnel_dst(dst=0x12345678)
9-- python pretty-printer
10bsn_set_tunnel_dst { dst = 0x12345678 }
Rich Laneccae0312013-07-21 23:34:13 -070011-- c
12obj = of_action_bsn_set_tunnel_dst_new(OF_VERSION_1_0);
13of_action_bsn_set_tunnel_dst_dst_set(obj, 0x12345678);