Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CopyTtlInwards action #293

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'bundler/gem_tasks'

RELISH_PROJECT = 'trema/pio'
FLAY_THRESHOLD = 1450
FLAY_THRESHOLD = 1470

task default: :travis
task test: [:spec, :cucumber]
Expand Down
14 changes: 14 additions & 0 deletions features/open_flow13/copy_ttl_inwards.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@open_flow13
Feature: Pio::CopyTtlInwards

Copies TTL "inwards" -- from outermost to next-to-outermost

Scenario: new
When I try to create an OpenFlow action with:
"""
Pio::CopyTtlInwards.new
"""
Then it should finish successfully
And the action has the following fields and values:
| field | value |
| action_type | 12 |
2 changes: 1 addition & 1 deletion lib/pio/open_flow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def self.switch_version(version)
:SetArpSenderHardwareAddress, :NiciraRegMove, :SetMetadata,
:NiciraRegLoad, :NiciraSendOutPort, :NiciraStackPush,
:NiciraStackPop, :DecrementIpTtl, :SetIpTtl,
:CopyTtlOutwards].each do |each|
:CopyTtlOutwards, :CopyTtlInwards].each do |each|
set_message_class_name each, version
@version = version.to_s
end
Expand Down
1 change: 1 addition & 0 deletions lib/pio/open_flow13.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# Actions
require 'pio/open_flow/nicira_resubmit'
require 'pio/open_flow/nicira_resubmit_table'
require 'pio/open_flow13/copy_ttl_inwards'
require 'pio/open_flow13/copy_ttl_outwards'
require 'pio/open_flow13/decrement_ip_ttl'
require 'pio/open_flow13/nicira_reg_load'
Expand Down
15 changes: 15 additions & 0 deletions lib/pio/open_flow13/copy_ttl_inwards.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
require 'pio/open_flow/action'

module Pio
module OpenFlow13
# Copies TTL "inwards" -- from outermost to next-to-outermost
class CopyTtlInwards < OpenFlow::Action
action_header action_type: 12, action_length: 8
string :padding, length: 4

def initialize
super({})
end
end
end
end