We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6b49ecc + c137369 commit d967b14Copy full SHA for d967b14
openflow13/meter.go
@@ -25,6 +25,12 @@ const (
25
OFPMF13_BURST = 0b0100 /* Do burst size. */
26
OFPMF13_STATS = 0b1000 /* Collect statistics. */
27
28
+ /* Meter numbering. Flow meters can use any number up to OFPM_MAX. */
29
+ OFPM13_MAX = 0xffff0000 /* Last usable meter. */
30
+ OFPM13_SLOWPATH = 0xfffffffd /* Meter for slow datapath. */
31
+ OFPM13_CONTROLLER = 0xfffffffe /* Meter for controller connection. */
32
+ OFPM13_ALL = 0xffffffff /* Represents all meters for stat requests commands. */
33
+
34
METER_BAND_HEADER_LEN = 12
35
METER_BAND_LEN = 16
36
)
0 commit comments