Openflow parser

This commit is contained in:
Eishun Kondoh 2017-11-13 22:52:53 +09:00
parent 70b0d8919e
commit fc02a678de
338 changed files with 9081 additions and 0 deletions

View file

@ -0,0 +1,19 @@
defmodule Openflow.Action.SetQueue do
defstruct(id: 0)
alias __MODULE__
def ofpat, do: 21
def new(id) do
%SetQueue{id: id}
end
def to_binary(%SetQueue{id: id}) do
<<21::16, 8::16, id::32>>
end
def read(<<21::16, 8::16, id::32>>) do
%SetQueue{id: id}
end
end