blob: 4e19d0f7e7f7e9da67e2cedf203f4e2e4f0b3528 [file] [log] [blame]
Murat Parlakisikf95672c2016-12-05 00:53:17 -08001--binary
206 13 # version, type
300 28 # length
412 34 56 78 # xid
500 0F # multipart message type (OFPMP_QUEUE_DESC)
600 01 # flags (OFPMPF_REPLY_MORE)
700 00 00 00 # pad
800 00 00 01 # port_no
900 00 00 01 # queue_id
1000 18 # length
1100 00 00 00 00 00 # pad
1200 01 # properties[0].type (OFPQDPT_MIN_RATE)
1300 08 # properties[0].length
1400 01 # rate
1500 00 # pad
16
17-- java
18builder
19 .setXid(0x12345678)
20 .setFlags(ImmutableSet.<OFStatsReplyFlags>of(OFStatsReplyFlags.REPLY_MORE))
21 .setEntries(ImmutableList.<OFQueueDesc>of(factory.buildQueueDesc().setPortNo(1)
22 .setQueueId(1)
23 .setProperties(ImmutableList.<OFQueueDescProp>of(factory.buildQueueDescPropMinRate()
24 .setRate(1)
25 .build())).build()))
26 .build();