Class: Pio::OpenFlow13::FlowMod::OutGroup
- Inherits:
-
BinData::Primitive
- Object
- BinData::Primitive
- Pio::OpenFlow13::FlowMod::OutGroup
- Defined in:
- lib/pio/open_flow13/flow_mod.rb
Overview
For delete commands, require matching entries to include this as an output group.
Constant Summary collapse
- ANY =
0xffffffff
Instance Method Summary collapse
Instance Method Details
#get ⇒ Object
57 58 59 |
# File 'lib/pio/open_flow13/flow_mod.rb', line 57 def get out_group == ANY ? :any : out_group end |
#set(value) ⇒ Object
61 62 63 |
# File 'lib/pio/open_flow13/flow_mod.rb', line 61 def set(value) self.out_group = (value == :any ? ANY : value) end |