pio 0.28.0 → 0.28.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3df44da54a5ee6b53635131992a450e190d5878d
|
4
|
+
data.tar.gz: 756b740f33b744bf2af1468c65723a3b0ec7795c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c84d89664314ffa03b6333cd1bc0d3e5a2798de80c2272e521ea9bd051a7642d860c6cc1e2a903873c7a6069717add82d41fd47f64b06059f813fa5f82730e6
|
7
|
+
data.tar.gz: 956ae82279e9b19da9857eea93c6f622c505c669535dec2960ab9e3b849e2f1c363df065a64d158bd641f2853fac61368e24575b50f547fa2bcd5ecebab400bd
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,11 @@
|
|
3
3
|
## develop (unreleased)
|
4
4
|
|
5
5
|
|
6
|
+
## 0.28.1 (11/5/2015)
|
7
|
+
### Changes
|
8
|
+
* Remove `OpenFlow10` namespace from `Pio::OpenFlow10::SetSourceMacAddress` and `Pio::OpenFlow10::SetDestinationMacAddress`.
|
9
|
+
|
10
|
+
|
6
11
|
## 0.28.0 (11/5/2015)
|
7
12
|
### New features
|
8
13
|
* [#267](https://github.com/trema/pio/pull/267): Add Queue Stats Request message generator.
|
@@ -1,10 +1,10 @@
|
|
1
1
|
@open_flow10
|
2
|
-
Feature: Pio::
|
2
|
+
Feature: Pio::SetDestinationMacAddress
|
3
3
|
|
4
4
|
Scenario: new('11:22:33:44:55:66')
|
5
5
|
When I try to create an OpenFlow action with:
|
6
6
|
"""
|
7
|
-
Pio::
|
7
|
+
Pio::SetDestinationMacAddress.new('11:22:33:44:55:66')
|
8
8
|
"""
|
9
9
|
Then it should finish successfully
|
10
10
|
And the action has the following fields and values:
|
@@ -1,10 +1,10 @@
|
|
1
1
|
@open_flow10
|
2
|
-
Feature: Pio::
|
2
|
+
Feature: Pio::SetSourceMacAddress
|
3
3
|
|
4
4
|
Scenario: new('11:22:33:44:55:66')
|
5
5
|
When I try to create an OpenFlow action with:
|
6
6
|
"""
|
7
|
-
Pio::
|
7
|
+
Pio::SetSourceMacAddress.new('11:22:33:44:55:66')
|
8
8
|
"""
|
9
9
|
Then it should finish successfully
|
10
10
|
And the action has the following fields and values:
|
data/lib/pio/open_flow.rb
CHANGED
@@ -16,9 +16,10 @@ module Pio
|
|
16
16
|
|
17
17
|
def self.switch_version(version)
|
18
18
|
[:Barrier, :Echo, :Features, :FlowMod, :Hello, :Match,
|
19
|
-
:PacketIn, :FlowRemoved, :PacketOut, :SendOutPort,
|
20
|
-
:
|
21
|
-
:
|
19
|
+
:PacketIn, :FlowRemoved, :PacketOut, :SendOutPort,
|
20
|
+
:SetSourceMacAddress, :SetDestinationMacAddress, :PortStatus, :Stats,
|
21
|
+
:FlowStats, :DescriptionStats, :AggregateStats, :TableStats, :PortStats,
|
22
|
+
:QueueStats, :Error, :NiciraResubmit,
|
22
23
|
:NiciraResubmitTable].each do |each|
|
23
24
|
set_message_class_name each, version
|
24
25
|
@version = version.to_s
|
data/lib/pio/version.rb
CHANGED