Feature/bundle support (#15)

* openflow: Add bundle support

* openflow: Add bundle message generator and parser

* openflow: Add bundle API
This commit is contained in:
Eishun Kondoh 2019-03-04 04:03:25 +09:00 committed by GitHub
parent db68e81954
commit ec1cdb6eff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 388 additions and 11 deletions

View file

@ -990,6 +990,20 @@ defmodule Openflow.EnumGen do
apply_setfield_miss: 15,
experimenter: 0xFFFE,
experimenter_miss: 0xFFFF
],
bundle_ctrl_type: [
open_request: 0,
open_reply: 1,
close_request: 2,
close_reply: 3,
commit_request: 4,
commit_reply: 5,
discard_request: 6,
discard_reply: 7
],
bundle_flags: [
atomic: 1 <<< 0,
ordered: 1 <<< 1
]
]