Skip to content

Commit 27e68f0

Browse files
authored
Merge pull request #25 from hongliangl/group_insert_buckets
Add support for insert_buckets operation of group
2 parents 638299a + 8ab1ff7 commit 27e68f0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

openflow13/group.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ const (
1818
)
1919

2020
const (
21-
OFPGC_ADD = 0 /* New group. */
22-
OFPGC_MODIFY = 1 /* Modify all matching groups. */
23-
OFPGC_DELETE = 2 /* Delete all matching groups. */
21+
OFPGC_ADD = 0 /* New group. */
22+
OFPGC_MODIFY = 1 /* Modify all matching groups. */
23+
OFPGC_DELETE = 2 /* Delete all matching groups. */
24+
OFPGC_INSERT_BUCKET = 3 /* Insert action buckets to the already available
25+
list of action buckets in a matching group */
2426
)
2527

2628
const (

0 commit comments

Comments
 (0)