pio 0.27.2 → 0.28.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -0
  3. data/Rakefile +1 -1
  4. data/bin/{code_metrics → terminal-notifier} +2 -2
  5. data/features/dhcp.feature +12 -12
  6. data/features/icmp.feature +12 -12
  7. data/features/open_flow10/aggregate_stats_request.feature +10 -10
  8. data/features/open_flow10/enqueue.feature +7 -7
  9. data/features/open_flow10/exact_match.feature +15 -15
  10. data/features/open_flow10/features_reply.feature +40 -40
  11. data/features/open_flow10/flow_mod.feature +49 -49
  12. data/features/open_flow10/flow_removed.feature +34 -0
  13. data/features/open_flow10/flow_stats_reply.feature +14 -14
  14. data/features/open_flow10/flow_stats_request.feature +15 -15
  15. data/features/open_flow10/nicira_resubmit.feature +30 -0
  16. data/features/open_flow10/nicira_resubmit_table.feature +32 -0
  17. data/features/open_flow10/port_stats_request.feature +48 -0
  18. data/features/open_flow10/port_stats_request.raw +0 -0
  19. data/features/open_flow10/queue_stats_request.feature +51 -0
  20. data/features/open_flow10/queue_stats_request.raw +0 -0
  21. data/features/open_flow10/send_out_port.feature +40 -40
  22. data/features/open_flow10/set_destination_mac_address.feature +16 -0
  23. data/features/open_flow10/set_ip_destination_address.feature +6 -6
  24. data/features/open_flow10/set_source_ip_address.feature +16 -0
  25. data/features/open_flow10/set_source_mac_address.feature +16 -0
  26. data/features/open_flow10/{set_ip_tos.feature → set_tos.feature} +3 -3
  27. data/features/open_flow10/set_transport_destination_port.feature +6 -6
  28. data/features/open_flow10/set_transport_source_port.feature +6 -6
  29. data/features/open_flow10/set_vlan_priority.feature +3 -3
  30. data/features/open_flow10/set_vlan_vid.feature +6 -6
  31. data/features/open_flow10/strip_vlan_header.feature +5 -5
  32. data/features/open_flow10/table_stats_request.feature +31 -0
  33. data/features/open_flow13/match.feature +33 -33
  34. data/features/open_flow13/send_out_port.feature +45 -45
  35. data/features/udp.feature +2 -2
  36. data/lib/pio/arp/format.rb +5 -5
  37. data/lib/pio/dhcp/boot_reply_options.rb +6 -6
  38. data/lib/pio/dhcp/boot_request_options.rb +2 -2
  39. data/lib/pio/dhcp/common_options.rb +5 -5
  40. data/lib/pio/dhcp/message.rb +2 -2
  41. data/lib/pio/icmp/options.rb +2 -2
  42. data/lib/pio/icmp/reply.rb +6 -6
  43. data/lib/pio/icmp/request.rb +6 -6
  44. data/lib/pio/ipv4_header.rb +11 -11
  45. data/lib/pio/open_flow.rb +5 -2
  46. data/lib/pio/open_flow/action.rb +41 -0
  47. data/lib/pio/open_flow/nicira_action.rb +17 -0
  48. data/lib/pio/open_flow10.rb +12 -1
  49. data/lib/pio/open_flow10/actions.rb +17 -15
  50. data/lib/pio/open_flow10/enqueue.rb +27 -46
  51. data/lib/pio/open_flow10/features/reply.rb +5 -5
  52. data/lib/pio/open_flow10/flow_removed.rb +40 -0
  53. data/lib/pio/open_flow10/match.rb +33 -33
  54. data/lib/pio/open_flow10/nicira_resubmit.rb +20 -0
  55. data/lib/pio/open_flow10/nicira_resubmit_table.rb +17 -0
  56. data/lib/pio/open_flow10/port_stats/request.rb +25 -0
  57. data/lib/pio/open_flow10/queue_stats/request.rb +22 -0
  58. data/lib/pio/open_flow10/send_out_port.rb +6 -27
  59. data/lib/pio/open_flow10/set_destination_ip_address.rb +16 -0
  60. data/lib/pio/open_flow10/set_destination_mac_address.rb +18 -0
  61. data/lib/pio/open_flow10/set_source_ip_address.rb +16 -0
  62. data/lib/pio/open_flow10/set_source_mac_address.rb +18 -0
  63. data/lib/pio/open_flow10/set_tos.rb +24 -0
  64. data/lib/pio/open_flow10/set_transport_port.rb +32 -48
  65. data/lib/pio/open_flow10/set_vlan_priority.rb +16 -11
  66. data/lib/pio/open_flow10/set_vlan_vid.rb +16 -11
  67. data/lib/pio/open_flow10/stats_request.rb +5 -1
  68. data/lib/pio/open_flow10/strip_vlan_header.rb +8 -25
  69. data/lib/pio/open_flow10/table_stats/request.rb +19 -0
  70. data/lib/pio/open_flow13/actions.rb +1 -1
  71. data/lib/pio/open_flow13/match.rb +19 -19
  72. data/lib/pio/open_flow13/send_out_port.rb +9 -28
  73. data/lib/pio/udp_header.rb +4 -4
  74. data/lib/pio/version.rb +1 -1
  75. data/pio.gemspec +3 -2
  76. data/spec/pio/dhcp/ack_spec.rb +8 -8
  77. data/spec/pio/dhcp/offer_spec.rb +8 -8
  78. data/spec/pio/dhcp_spec.rb +16 -16
  79. data/spec/pio/icmp/reply_spec.rb +4 -4
  80. data/spec/pio/icmp/request_spec.rb +6 -6
  81. data/spec/pio/icmp_spec.rb +4 -4
  82. data/spec/pio/open_flow10/enqueue_spec.rb +13 -11
  83. data/spec/pio/open_flow10/flow_mod_spec.rb +20 -20
  84. data/spec/pio/open_flow10/flow_stats_request_spec.rb +4 -4
  85. data/spec/pio/open_flow10/match_spec.rb +59 -59
  86. data/spec/pio/open_flow10/packet_out_spec.rb +31 -29
  87. data/spec/pio/open_flow10/set_destination_ip_address_spec.rb +27 -0
  88. data/spec/pio/open_flow10/set_destination_mac_address_spec.rb +28 -0
  89. data/spec/pio/open_flow10/set_source_ip_address_spec.rb +27 -0
  90. data/spec/pio/open_flow10/set_source_mac_address_spec.rb +28 -0
  91. data/spec/pio/open_flow10/set_tos_spec.rb +30 -0
  92. data/spec/pio/open_flow10/set_transport_destination_port_spec.rb +4 -4
  93. data/spec/pio/open_flow10/set_transport_source_port_spec.rb +4 -4
  94. data/spec/pio/open_flow10/set_vlan_priority_spec.rb +4 -4
  95. data/spec/pio/open_flow10/set_vlan_vid_spec.rb +4 -4
  96. data/spec/pio/open_flow10/strip_vlan_header_spec.rb +5 -5
  97. data/spec/pio/open_flow10/wildcards_spec.rb +18 -18
  98. data/spec/pio/open_flow13/match_spec.rb +20 -20
  99. metadata +73 -37
  100. data/bin/code_metrics-profile +0 -16
  101. data/features/open_flow10/set_ether_destination_address.feature +0 -16
  102. data/features/open_flow10/set_ether_source_address.feature +0 -16
  103. data/features/open_flow10/set_ip_source_address.feature +0 -16
  104. data/lib/pio/open_flow10/set_ether_address.rb +0 -53
  105. data/lib/pio/open_flow10/set_ip_address.rb +0 -49
  106. data/lib/pio/open_flow10/set_ip_tos.rb +0 -42
  107. data/lib/pio/open_flow10/set_vlan.rb +0 -37
  108. data/spec/pio/open_flow10/set_ether_destination_address_spec.rb +0 -28
  109. data/spec/pio/open_flow10/set_ether_source_address_spec.rb +0 -28
  110. data/spec/pio/open_flow10/set_ip_destination_address_spec.rb +0 -27
  111. data/spec/pio/open_flow10/set_ip_source_address_spec.rb +0 -25
  112. data/spec/pio/open_flow10/set_ip_tos_spec.rb +0 -30
@@ -1,16 +1,16 @@
1
1
  require 'pio/open_flow10/strip_vlan_header'
2
2
 
3
- describe Pio::StripVlanHeader do
4
- Given(:strip_vlan_header) { Pio::StripVlanHeader.new }
3
+ describe Pio::OpenFlow10::StripVlanHeader do
4
+ Given(:strip_vlan_header) { Pio::OpenFlow10::StripVlanHeader.new }
5
5
 
6
6
  describe '#action_type' do
7
7
  When(:action_type) { strip_vlan_header.action_type }
8
8
  Then { action_type == 3 }
9
9
  end
10
10
 
11
- describe '#length' do
12
- When(:length) { strip_vlan_header.length }
13
- Then { length == 8 }
11
+ describe '#action_length' do
12
+ When(:action_length) { strip_vlan_header.action_length }
13
+ Then { action_length == 8 }
14
14
  end
15
15
 
16
16
  describe '#to_binary' do
@@ -22,26 +22,26 @@ describe Pio::OpenFlow10::Match::Wildcards do
22
22
  Then { binary == ['00000000000000000000000000000001'].pack('B*') }
23
23
  end
24
24
 
25
- context 'with ip_source_address: 0b10101' do
26
- Given(:parameters) { { ip_source_address: 0b10101 } }
25
+ context 'with source_ip_address: 0b10101' do
26
+ Given(:parameters) { { source_ip_address: 0b10101 } }
27
27
 
28
28
  Then { binary == ['00000000000000000001010100000000'].pack('B*') }
29
29
  end
30
30
 
31
- context 'with ip_source_address_all: true' do
32
- Given(:parameters) { { ip_source_address_all: true } }
31
+ context 'with source_ip_address_all: true' do
32
+ Given(:parameters) { { source_ip_address_all: true } }
33
33
 
34
34
  Then { binary == ['00000000000000000010000000000000'].pack('B*') }
35
35
  end
36
36
 
37
- context 'with ip_destination_address: 010101' do
38
- Given(:parameters) { { ip_destination_address: 0b10101 } }
37
+ context 'with destination_ip_address: 010101' do
38
+ Given(:parameters) { { destination_ip_address: 0b10101 } }
39
39
 
40
40
  Then { binary == ['00000000000001010100000000000000'].pack('B*') }
41
41
  end
42
42
 
43
- context 'with ip_destination_address_all: true' do
44
- Given(:parameters) { { ip_destination_address_all: true } }
43
+ context 'with destination_ip_address_all: true' do
44
+ Given(:parameters) { { destination_ip_address_all: true } }
45
45
 
46
46
  Then { binary == ['00000000000010000000000000000000'].pack('B*') }
47
47
  end
@@ -82,35 +82,35 @@ describe Pio::OpenFlow10::Match::Wildcards do
82
82
  Then { wildcards == { vlan_vid: true } }
83
83
  end
84
84
 
85
- context 'with ip_source_address: 010101' do
85
+ context 'with source_ip_address: 010101' do
86
86
  Given(:binary) { ['00000000000000000001010100000000'].pack('B*') }
87
87
 
88
- Then { wildcards == { ip_source_address: 0b10101 } }
88
+ Then { wildcards == { source_ip_address: 0b10101 } }
89
89
  end
90
90
 
91
- context 'with ip_source_address: 100000' do
91
+ context 'with source_ip_address: 100000' do
92
92
  Given(:binary) { ['00000000000000000010000000000000'].pack('B*') }
93
93
 
94
- Then { wildcards == { ip_source_address_all: true } }
94
+ Then { wildcards == { source_ip_address_all: true } }
95
95
  end
96
96
 
97
- context 'with ip_destination_address: 010101' do
97
+ context 'with destination_ip_address: 010101' do
98
98
  Given(:binary) { ['00000000000001010100000000000000'].pack('B*') }
99
99
 
100
- Then { wildcards == { ip_destination_address: 0b10101 } }
100
+ Then { wildcards == { destination_ip_address: 0b10101 } }
101
101
  end
102
102
 
103
- context 'with ip_destination_address: 100000' do
103
+ context 'with destination_ip_address: 100000' do
104
104
  Given(:binary) { ['00000000000010000000000000000000'].pack('B*') }
105
105
 
106
- Then { wildcards == { ip_destination_address_all: true } }
106
+ Then { wildcards == { destination_ip_address_all: true } }
107
107
  end
108
108
 
109
- context 'with in_port: true, ip_source_address: 010101, ip_tos: true' do
109
+ context 'with in_port: true, source_ip_address: 010101, tos: true' do
110
110
  Given(:binary) { ['00000000001000000001010100000001'].pack('B*') }
111
111
 
112
112
  Then do
113
- wildcards == { in_port: true, ip_source_address: 0b10101, ip_tos: true }
113
+ wildcards == { in_port: true, source_ip_address: 0b10101, tos: true }
114
114
  end
115
115
  end
116
116
  end
@@ -30,11 +30,11 @@ describe Pio::OpenFlow13::Match do
30
30
  And { match.match_fields[0].oxm_length == 4 }
31
31
  end
32
32
 
33
- context "with ether_source_address: '01:02:03:04:05:06'" do
33
+ context "with source_mac_address: '01:02:03:04:05:06'" do
34
34
  When(:match) do
35
- Pio::OpenFlow13::Match.new(ether_source_address: '01:02:03:04:05:06')
35
+ Pio::OpenFlow13::Match.new(source_mac_address: '01:02:03:04:05:06')
36
36
  end
37
- Then { match.ether_source_address == '01:02:03:04:05:06' }
37
+ Then { match.source_mac_address == '01:02:03:04:05:06' }
38
38
  And { match.class == Pio::OpenFlow13::Match }
39
39
  And { match.length == 16 }
40
40
  And { match.match_type == Pio::OpenFlow13::MATCH_TYPE_OXM }
@@ -46,7 +46,7 @@ describe Pio::OpenFlow13::Match do
46
46
  end
47
47
  And do
48
48
  match.match_fields[0].oxm_field ==
49
- Pio::OpenFlow13::Match::EtherSourceAddress::OXM_FIELD
49
+ Pio::OpenFlow13::Match::SourceMacAddress::OXM_FIELD
50
50
  end
51
51
  And { match.match_fields[0].masked? == false }
52
52
  And { match.match_fields[0].oxm_length == 6 }
@@ -97,13 +97,13 @@ describe Pio::OpenFlow13::Match do
97
97
  And { match.match_fields[0].oxm_length == 16 }
98
98
  end
99
99
 
100
- context "with ether_source_address: '01:02:03:04:05:06', ether_source_address_mask: 'ff:ff:ff:00:00:00'" do
100
+ context "with source_mac_address: '01:02:03:04:05:06', source_mac_address_mask: 'ff:ff:ff:00:00:00'" do
101
101
  When(:match) do
102
- Pio::OpenFlow13::Match.new(ether_source_address: '01:02:03:04:05:06',
103
- ether_source_address_mask: 'ff:ff:ff:00:00:00')
102
+ Pio::OpenFlow13::Match.new(source_mac_address: '01:02:03:04:05:06',
103
+ source_mac_address_mask: 'ff:ff:ff:00:00:00')
104
104
  end
105
- Then { match.ether_source_address == '01:02:03:04:05:06' }
106
- Then { match.ether_source_address_mask == 'ff:ff:ff:00:00:00' }
105
+ Then { match.source_mac_address == '01:02:03:04:05:06' }
106
+ Then { match.source_mac_address_mask == 'ff:ff:ff:00:00:00' }
107
107
  And { match.class == Pio::OpenFlow13::Match }
108
108
  And { match.length == 24 }
109
109
  And { match.match_type == Pio::OpenFlow13::MATCH_TYPE_OXM }
@@ -115,7 +115,7 @@ describe Pio::OpenFlow13::Match do
115
115
  end
116
116
  And do
117
117
  match.match_fields[0].oxm_field ==
118
- Pio::OpenFlow13::Match::EtherSourceAddress::OXM_FIELD
118
+ Pio::OpenFlow13::Match::SourceMacAddress::OXM_FIELD
119
119
  end
120
120
  And { match.match_fields[0].masked? == true }
121
121
  And { match.match_fields[0].oxm_length == 12 }
@@ -739,7 +739,7 @@ describe Pio::OpenFlow13::Match do
739
739
  Given(:raw_data) do
740
740
  read_raw_data_file 'features/open_flow13/oxm_ether_destination_field.raw'
741
741
  end
742
- Then { match.ether_destination_address == 'ff:ff:ff:ff:ff:ff' }
742
+ Then { match.destination_mac_address == 'ff:ff:ff:ff:ff:ff' }
743
743
  And { match.class == Pio::OpenFlow13::Match }
744
744
  And { match.length == 16 }
745
745
  And { match.match_type == Pio::OpenFlow13::MATCH_TYPE_OXM }
@@ -751,7 +751,7 @@ describe Pio::OpenFlow13::Match do
751
751
  end
752
752
  And do
753
753
  match.match_fields[0].oxm_field ==
754
- Pio::OpenFlow13::Match::EtherDestinationAddress::OXM_FIELD
754
+ Pio::OpenFlow13::Match::DestinationMacAddress::OXM_FIELD
755
755
  end
756
756
  And { match.match_fields[0].masked? == false }
757
757
  And { match.match_fields[0].oxm_length == 6 }
@@ -761,7 +761,7 @@ describe Pio::OpenFlow13::Match do
761
761
  Given(:raw_data) do
762
762
  read_raw_data_file 'features/open_flow13/oxm_ether_source_field.raw'
763
763
  end
764
- Then { match.ether_source_address == '01:02:03:04:05:06' }
764
+ Then { match.source_mac_address == '01:02:03:04:05:06' }
765
765
  And { match.class == Pio::OpenFlow13::Match }
766
766
  And { match.length == 16 }
767
767
  And { match.match_type == Pio::OpenFlow13::MATCH_TYPE_OXM }
@@ -773,7 +773,7 @@ describe Pio::OpenFlow13::Match do
773
773
  end
774
774
  And do
775
775
  match.match_fields[0].oxm_field ==
776
- Pio::OpenFlow13::Match::EtherSourceAddress::OXM_FIELD
776
+ Pio::OpenFlow13::Match::SourceMacAddress::OXM_FIELD
777
777
  end
778
778
  And { match.match_fields[0].masked? == false }
779
779
  And { match.match_fields[0].oxm_length == 6 }
@@ -783,8 +783,8 @@ describe Pio::OpenFlow13::Match do
783
783
  Given(:raw_data) do
784
784
  read_raw_data_file 'features/open_flow13/oxm_masked_ether_destination_field.raw'
785
785
  end
786
- Then { match.ether_destination_address == 'ff:ff:ff:ff:ff:ff' }
787
- Then { match.ether_destination_address_mask == 'ff:ff:ff:00:00:00' }
786
+ Then { match.destination_mac_address == 'ff:ff:ff:ff:ff:ff' }
787
+ Then { match.destination_mac_address_mask == 'ff:ff:ff:00:00:00' }
788
788
  And { match.class == Pio::OpenFlow13::Match }
789
789
  And { match.length == 24 }
790
790
  And { match.match_type == Pio::OpenFlow13::MATCH_TYPE_OXM }
@@ -796,7 +796,7 @@ describe Pio::OpenFlow13::Match do
796
796
  end
797
797
  And do
798
798
  match.match_fields[0].oxm_field ==
799
- Pio::OpenFlow13::Match::EtherDestinationAddress::OXM_FIELD
799
+ Pio::OpenFlow13::Match::DestinationMacAddress::OXM_FIELD
800
800
  end
801
801
  And { match.match_fields[0].masked? == true }
802
802
  And { match.match_fields[0].oxm_length == 12 }
@@ -806,8 +806,8 @@ describe Pio::OpenFlow13::Match do
806
806
  Given(:raw_data) do
807
807
  read_raw_data_file 'features/open_flow13/oxm_masked_ether_source_field.raw'
808
808
  end
809
- Then { match.ether_source_address == '01:02:03:04:05:06' }
810
- Then { match.ether_source_address_mask == 'ff:ff:ff:00:00:00' }
809
+ Then { match.source_mac_address == '01:02:03:04:05:06' }
810
+ Then { match.source_mac_address_mask == 'ff:ff:ff:00:00:00' }
811
811
  And { match.class == Pio::OpenFlow13::Match }
812
812
  And { match.length == 24 }
813
813
  And { match.match_type == Pio::OpenFlow13::MATCH_TYPE_OXM }
@@ -819,7 +819,7 @@ describe Pio::OpenFlow13::Match do
819
819
  end
820
820
  And do
821
821
  match.match_fields[0].oxm_field ==
822
- Pio::OpenFlow13::Match::EtherSourceAddress::OXM_FIELD
822
+ Pio::OpenFlow13::Match::SourceMacAddress::OXM_FIELD
823
823
  end
824
824
  And { match.match_fields[0].masked? == true }
825
825
  And { match.match_fields[0].oxm_length == 12 }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.2
4
+ version: 0.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasuhito Takamiya
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-25 00:00:00.000000000 Z
11
+ date: 2015-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bindata
@@ -25,33 +25,33 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: 2.1.0
27
27
  - !ruby/object:Gem::Dependency
28
- name: rake
28
+ name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: 1.10.6
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: 1.10.6
41
41
  - !ruby/object:Gem::Dependency
42
- name: bundler
42
+ name: byebug
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.10.6
47
+ version: 7.0.0
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.10.6
54
+ version: 7.0.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: pry
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.10.3
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: guard
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -310,14 +324,14 @@ dependencies:
310
324
  requirements:
311
325
  - - "~>"
312
326
  - !ruby/object:Gem::Version
313
- version: 3.5.0
327
+ version: 3.6.0
314
328
  type: :development
315
329
  prerelease: false
316
330
  version_requirements: !ruby/object:Gem::Requirement
317
331
  requirements:
318
332
  - - "~>"
319
333
  - !ruby/object:Gem::Version
320
- version: 3.5.0
334
+ version: 3.6.0
321
335
  - !ruby/object:Gem::Dependency
322
336
  name: rspec
323
337
  requirement: !ruby/object:Gem::Requirement
@@ -380,8 +394,6 @@ files:
380
394
  - bin/byebug
381
395
  - bin/cc-tddium-post-worker
382
396
  - bin/cdiff
383
- - bin/code_metrics
384
- - bin/code_metrics-profile
385
397
  - bin/coderay
386
398
  - bin/colortab
387
399
  - bin/coveralls
@@ -409,6 +421,7 @@ files:
409
421
  - bin/sparkr
410
422
  - bin/term_display
411
423
  - bin/term_mandel
424
+ - bin/terminal-notifier
412
425
  - bin/thor
413
426
  - bin/unparser
414
427
  - bin/yard
@@ -456,6 +469,7 @@ files:
456
469
  - features/open_flow10/flow_mod_delete_strict.raw
457
470
  - features/open_flow10/flow_mod_modify.raw
458
471
  - features/open_flow10/flow_mod_modify_strict.raw
472
+ - features/open_flow10/flow_removed.feature
459
473
  - features/open_flow10/flow_removed.raw
460
474
  - features/open_flow10/flow_stats_reply.feature
461
475
  - features/open_flow10/flow_stats_reply.raw
@@ -467,6 +481,8 @@ files:
467
481
  - features/open_flow10/hello.raw
468
482
  - features/open_flow10/hello_failed.feature
469
483
  - features/open_flow10/hello_failed.raw
484
+ - features/open_flow10/nicira_resubmit.feature
485
+ - features/open_flow10/nicira_resubmit_table.feature
470
486
  - features/open_flow10/nx_flow_mod_add.raw
471
487
  - features/open_flow10/nx_flow_mod_delete.raw
472
488
  - features/open_flow10/nx_flow_mod_delete_strict.raw
@@ -482,24 +498,28 @@ files:
482
498
  - features/open_flow10/packet_out.raw
483
499
  - features/open_flow10/port_mod.raw
484
500
  - features/open_flow10/port_stats_reply.raw
501
+ - features/open_flow10/port_stats_request.feature
485
502
  - features/open_flow10/port_stats_request.raw
486
503
  - features/open_flow10/port_status.feature
487
504
  - features/open_flow10/port_status.raw
488
505
  - features/open_flow10/queue_get_config_reply.raw
489
506
  - features/open_flow10/queue_get_config_request.raw
507
+ - features/open_flow10/queue_stats_request.feature
508
+ - features/open_flow10/queue_stats_request.raw
490
509
  - features/open_flow10/send_out_port.feature
491
510
  - features/open_flow10/set_config.raw
492
- - features/open_flow10/set_ether_destination_address.feature
493
- - features/open_flow10/set_ether_source_address.feature
511
+ - features/open_flow10/set_destination_mac_address.feature
494
512
  - features/open_flow10/set_ip_destination_address.feature
495
- - features/open_flow10/set_ip_source_address.feature
496
- - features/open_flow10/set_ip_tos.feature
513
+ - features/open_flow10/set_source_ip_address.feature
514
+ - features/open_flow10/set_source_mac_address.feature
515
+ - features/open_flow10/set_tos.feature
497
516
  - features/open_flow10/set_transport_destination_port.feature
498
517
  - features/open_flow10/set_transport_source_port.feature
499
518
  - features/open_flow10/set_vlan_priority.feature
500
519
  - features/open_flow10/set_vlan_vid.feature
501
520
  - features/open_flow10/strip_vlan_header.feature
502
521
  - features/open_flow10/table_stats_reply.raw
522
+ - features/open_flow10/table_stats_request.feature
503
523
  - features/open_flow10/table_stats_request.raw
504
524
  - features/open_flow10/vendor.raw
505
525
  - features/open_flow10/vendor_action.feature
@@ -678,11 +698,13 @@ files:
678
698
  - lib/pio/monkey_patch/integer/base_conversions.rb
679
699
  - lib/pio/monkey_patch/integer/ranges.rb
680
700
  - lib/pio/open_flow.rb
701
+ - lib/pio/open_flow/action.rb
681
702
  - lib/pio/open_flow/datapath_id.rb
682
703
  - lib/pio/open_flow/error.rb
683
704
  - lib/pio/open_flow/flags.rb
684
705
  - lib/pio/open_flow/hello_failed_code.rb
685
706
  - lib/pio/open_flow/message.rb
707
+ - lib/pio/open_flow/nicira_action.rb
686
708
  - lib/pio/open_flow/open_flow_header.rb
687
709
  - lib/pio/open_flow/port.rb
688
710
  - lib/pio/open_flow/transaction_id.rb
@@ -706,28 +728,35 @@ files:
706
728
  - lib/pio/open_flow10/features/reply.rb
707
729
  - lib/pio/open_flow10/features/request.rb
708
730
  - lib/pio/open_flow10/flow_mod.rb
731
+ - lib/pio/open_flow10/flow_removed.rb
709
732
  - lib/pio/open_flow10/flow_stats/reply.rb
710
733
  - lib/pio/open_flow10/flow_stats/request.rb
711
734
  - lib/pio/open_flow10/hello.rb
712
735
  - lib/pio/open_flow10/match.rb
713
736
  - lib/pio/open_flow10/match10.rb
737
+ - lib/pio/open_flow10/nicira_resubmit.rb
738
+ - lib/pio/open_flow10/nicira_resubmit_table.rb
714
739
  - lib/pio/open_flow10/packet_in.rb
715
740
  - lib/pio/open_flow10/packet_out.rb
716
741
  - lib/pio/open_flow10/phy_port16.rb
717
742
  - lib/pio/open_flow10/port16.rb
743
+ - lib/pio/open_flow10/port_stats/request.rb
718
744
  - lib/pio/open_flow10/port_status.rb
745
+ - lib/pio/open_flow10/queue_stats/request.rb
719
746
  - lib/pio/open_flow10/send_out_port.rb
720
- - lib/pio/open_flow10/set_ether_address.rb
721
- - lib/pio/open_flow10/set_ip_address.rb
722
- - lib/pio/open_flow10/set_ip_tos.rb
747
+ - lib/pio/open_flow10/set_destination_ip_address.rb
748
+ - lib/pio/open_flow10/set_destination_mac_address.rb
749
+ - lib/pio/open_flow10/set_source_ip_address.rb
750
+ - lib/pio/open_flow10/set_source_mac_address.rb
751
+ - lib/pio/open_flow10/set_tos.rb
723
752
  - lib/pio/open_flow10/set_transport_port.rb
724
- - lib/pio/open_flow10/set_vlan.rb
725
753
  - lib/pio/open_flow10/set_vlan_priority.rb
726
754
  - lib/pio/open_flow10/set_vlan_vid.rb
727
755
  - lib/pio/open_flow10/stats_reply.rb
728
756
  - lib/pio/open_flow10/stats_request.rb
729
757
  - lib/pio/open_flow10/stats_type.rb
730
758
  - lib/pio/open_flow10/strip_vlan_header.rb
759
+ - lib/pio/open_flow10/table_stats/request.rb
731
760
  - lib/pio/open_flow10/vendor_action.rb
732
761
  - lib/pio/open_flow13.rb
733
762
  - lib/pio/open_flow13/actions.rb
@@ -795,11 +824,11 @@ files:
795
824
  - spec/pio/open_flow10/packet_out_spec.rb
796
825
  - spec/pio/open_flow10/phy_port16_spec.rb
797
826
  - spec/pio/open_flow10/send_out_port_spec.rb
798
- - spec/pio/open_flow10/set_ether_destination_address_spec.rb
799
- - spec/pio/open_flow10/set_ether_source_address_spec.rb
800
- - spec/pio/open_flow10/set_ip_destination_address_spec.rb
801
- - spec/pio/open_flow10/set_ip_source_address_spec.rb
802
- - spec/pio/open_flow10/set_ip_tos_spec.rb
827
+ - spec/pio/open_flow10/set_destination_ip_address_spec.rb
828
+ - spec/pio/open_flow10/set_destination_mac_address_spec.rb
829
+ - spec/pio/open_flow10/set_source_ip_address_spec.rb
830
+ - spec/pio/open_flow10/set_source_mac_address_spec.rb
831
+ - spec/pio/open_flow10/set_tos_spec.rb
803
832
  - spec/pio/open_flow10/set_transport_destination_port_spec.rb
804
833
  - spec/pio/open_flow10/set_transport_source_port_spec.rb
805
834
  - spec/pio/open_flow10/set_vlan_priority_spec.rb
@@ -842,7 +871,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
842
871
  version: '0'
843
872
  requirements: []
844
873
  rubyforge_project:
845
- rubygems_version: 2.4.8
874
+ rubygems_version: 2.4.6
846
875
  signing_key:
847
876
  specification_version: 4
848
877
  summary: Packet parser and generator.
@@ -878,11 +907,11 @@ test_files:
878
907
  - spec/pio/open_flow10/packet_out_spec.rb
879
908
  - spec/pio/open_flow10/phy_port16_spec.rb
880
909
  - spec/pio/open_flow10/send_out_port_spec.rb
881
- - spec/pio/open_flow10/set_ether_destination_address_spec.rb
882
- - spec/pio/open_flow10/set_ether_source_address_spec.rb
883
- - spec/pio/open_flow10/set_ip_destination_address_spec.rb
884
- - spec/pio/open_flow10/set_ip_source_address_spec.rb
885
- - spec/pio/open_flow10/set_ip_tos_spec.rb
910
+ - spec/pio/open_flow10/set_destination_ip_address_spec.rb
911
+ - spec/pio/open_flow10/set_destination_mac_address_spec.rb
912
+ - spec/pio/open_flow10/set_source_ip_address_spec.rb
913
+ - spec/pio/open_flow10/set_source_mac_address_spec.rb
914
+ - spec/pio/open_flow10/set_tos_spec.rb
886
915
  - spec/pio/open_flow10/set_transport_destination_port_spec.rb
887
916
  - spec/pio/open_flow10/set_transport_source_port_spec.rb
888
917
  - spec/pio/open_flow10/set_vlan_priority_spec.rb
@@ -947,6 +976,7 @@ test_files:
947
976
  - features/open_flow10/flow_mod_delete_strict.raw
948
977
  - features/open_flow10/flow_mod_modify.raw
949
978
  - features/open_flow10/flow_mod_modify_strict.raw
979
+ - features/open_flow10/flow_removed.feature
950
980
  - features/open_flow10/flow_removed.raw
951
981
  - features/open_flow10/flow_stats_reply.feature
952
982
  - features/open_flow10/flow_stats_reply.raw
@@ -958,6 +988,8 @@ test_files:
958
988
  - features/open_flow10/hello.raw
959
989
  - features/open_flow10/hello_failed.feature
960
990
  - features/open_flow10/hello_failed.raw
991
+ - features/open_flow10/nicira_resubmit.feature
992
+ - features/open_flow10/nicira_resubmit_table.feature
961
993
  - features/open_flow10/nx_flow_mod_add.raw
962
994
  - features/open_flow10/nx_flow_mod_delete.raw
963
995
  - features/open_flow10/nx_flow_mod_delete_strict.raw
@@ -973,24 +1005,28 @@ test_files:
973
1005
  - features/open_flow10/packet_out.raw
974
1006
  - features/open_flow10/port_mod.raw
975
1007
  - features/open_flow10/port_stats_reply.raw
1008
+ - features/open_flow10/port_stats_request.feature
976
1009
  - features/open_flow10/port_stats_request.raw
977
1010
  - features/open_flow10/port_status.feature
978
1011
  - features/open_flow10/port_status.raw
979
1012
  - features/open_flow10/queue_get_config_reply.raw
980
1013
  - features/open_flow10/queue_get_config_request.raw
1014
+ - features/open_flow10/queue_stats_request.feature
1015
+ - features/open_flow10/queue_stats_request.raw
981
1016
  - features/open_flow10/send_out_port.feature
982
1017
  - features/open_flow10/set_config.raw
983
- - features/open_flow10/set_ether_destination_address.feature
984
- - features/open_flow10/set_ether_source_address.feature
1018
+ - features/open_flow10/set_destination_mac_address.feature
985
1019
  - features/open_flow10/set_ip_destination_address.feature
986
- - features/open_flow10/set_ip_source_address.feature
987
- - features/open_flow10/set_ip_tos.feature
1020
+ - features/open_flow10/set_source_ip_address.feature
1021
+ - features/open_flow10/set_source_mac_address.feature
1022
+ - features/open_flow10/set_tos.feature
988
1023
  - features/open_flow10/set_transport_destination_port.feature
989
1024
  - features/open_flow10/set_transport_source_port.feature
990
1025
  - features/open_flow10/set_vlan_priority.feature
991
1026
  - features/open_flow10/set_vlan_vid.feature
992
1027
  - features/open_flow10/strip_vlan_header.feature
993
1028
  - features/open_flow10/table_stats_reply.raw
1029
+ - features/open_flow10/table_stats_request.feature
994
1030
  - features/open_flow10/table_stats_request.raw
995
1031
  - features/open_flow10/vendor.raw
996
1032
  - features/open_flow10/vendor_action.feature