Class: Trema::Controller::FlowModAddOption
- Inherits:
-
Object
- Object
- Trema::Controller::FlowModAddOption
- Defined in:
- lib/trema/controller.rb
Overview
Pio::FlowMod.new argument
Instance Method Summary collapse
-
#initialize(user_options) ⇒ FlowModAddOption
constructor
A new instance of FlowModAddOption.
- #to_hash ⇒ Object
Constructor Details
#initialize(user_options) ⇒ FlowModAddOption
Returns a new instance of FlowModAddOption.
19 20 21 |
# File 'lib/trema/controller.rb', line 19 def initialize() @user_options = end |
Instance Method Details
#to_hash ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/trema/controller.rb', line 23 def to_hash { command: :add, priority: @user_options[:priority] || 0, transaction_id: rand(0xffffffff), idle_timeout: @user_options[:idle_timeout] || 0, hard_timeout: @user_options[:hard_timeout] || 0, buffer_id: @user_options[:buffer_id] || 0xffffffff, match: @user_options.fetch(:match), actions: @user_options[:actions] || [] } end |