class Pio::OpenFlow13::FlowMod::OutPort

For delete commands, require matching entries to include this as an output port.

Constants

ANY

Public Instance Methods

get() click to toggle source
# File lib/pio/open_flow13/flow_mod.rb, line 40
def get
  out_port == ANY ? :any : out_port
end
set(value) click to toggle source
# File lib/pio/open_flow13/flow_mod.rb, line 44
def set(value)
  self.out_port = (value == :any ? ANY : value)
end