pio 0.24.2 → 0.25.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/README.md +2 -0
  4. data/bin/byebug +16 -0
  5. data/features/arp.feature +2 -2
  6. data/features/dhcp.feature +4 -4
  7. data/features/icmp.feature +2 -2
  8. data/features/lldp.feature +1 -1
  9. data/features/open_flow10/barrier_reply.feature +4 -4
  10. data/features/open_flow10/barrier_request.feature +4 -4
  11. data/features/open_flow10/echo_reply.feature +6 -6
  12. data/features/open_flow10/echo_request.feature +6 -6
  13. data/features/open_flow10/exact_match.feature +2 -2
  14. data/features/open_flow10/features_reply.feature +2 -2
  15. data/features/open_flow10/features_request.feature +4 -4
  16. data/features/open_flow10/flow_mod.feature +6 -6
  17. data/features/open_flow10/flow_stats_reply.feature +105 -0
  18. data/features/open_flow10/flow_stats_request.feature +90 -0
  19. data/features/open_flow10/hello.feature +4 -4
  20. data/features/open_flow10/packet_in.feature +2 -2
  21. data/features/open_flow10/packet_out.feature +1 -1
  22. data/features/open_flow10/port_status.feature +1 -1
  23. data/features/open_flow13/apply_actions.feature +3 -3
  24. data/features/open_flow13/echo_reply.feature +7 -7
  25. data/features/open_flow13/echo_request.feature +7 -7
  26. data/features/open_flow13/features_reply.feature +2 -2
  27. data/features/open_flow13/features_request.feature +4 -4
  28. data/features/open_flow13/flow_mod.feature +5 -5
  29. data/features/open_flow13/goto_table.feature +2 -2
  30. data/features/open_flow13/hello.feature +5 -5
  31. data/features/open_flow13/match.feature +81 -81
  32. data/features/open_flow13/meter.feature +2 -2
  33. data/features/open_flow13/packet_in.feature +3 -3
  34. data/features/open_flow13/packet_out.feature +3 -3
  35. data/features/open_flow13/send_out_port.feature +2 -2
  36. data/features/open_flow13/write_metadata.feature +2 -2
  37. data/features/open_flow_read.feature +12 -10
  38. data/features/step_definitions/packet_data_steps.rb +3 -3
  39. data/lib/pio/open_flow.rb +4 -1
  40. data/lib/pio/open_flow/message.rb +3 -0
  41. data/lib/pio/open_flow10.rb +2 -0
  42. data/lib/pio/open_flow10/flow_mod.rb +1 -16
  43. data/lib/pio/open_flow10/flow_stats_reply.rb +59 -0
  44. data/lib/pio/open_flow10/flow_stats_request.rb +64 -0
  45. data/lib/pio/open_flow10/match.rb +17 -0
  46. data/lib/pio/open_flow10/stats_type.rb +27 -0
  47. data/lib/pio/version.rb +1 -1
  48. data/pio.gemspec +2 -2
  49. data/spec/pio/open_flow10/flow_stats_reply_spec.rb +39 -0
  50. data/spec/pio/open_flow10/flow_stats_request_spec.rb +38 -0
  51. metadata +185 -173
@@ -0,0 +1,38 @@
1
+ require 'pio/open_flow10/flow_stats_request'
2
+
3
+ describe Pio::OpenFlow10::FlowStats::Request do
4
+ describe '.read' do
5
+ context 'with a Flow Stats Request binary' do
6
+ Given(:binary) do
7
+ [0x01, 0x10, 0x00, 0x38, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x01,
8
+ 0x00, 0x00, 0x00, 0x38, 0x20, 0xff, 0x00, 0x00, 0x00, 0x00,
9
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
10
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
11
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
12
+ 0x00, 0x00, 0xff, 0x00, 0xff, 0xff].pack('C*')
13
+ end
14
+
15
+ When(:flow_stats_request) do
16
+ Pio::OpenFlow10::FlowStats::Request.read(binary)
17
+ end
18
+
19
+ Then { flow_stats_request.class == Pio::OpenFlow10::FlowStats::Request }
20
+ Then { flow_stats_request.ofp_version == 1 }
21
+ Then { flow_stats_request.message_type == 16 }
22
+ Then { flow_stats_request.message_length == 56 }
23
+ Then { flow_stats_request.transaction_id == 13 }
24
+ Then { flow_stats_request.xid == 13 }
25
+ Then { flow_stats_request.stats_type == :flow }
26
+ Then do
27
+ flow_stats_request.match.wildcards.keys.sort ==
28
+ [:ether_destination_address, :ether_source_address,
29
+ :ether_type, :in_port, :ip_destination_address_all,
30
+ :ip_protocol, :ip_source_address_all, :ip_tos,
31
+ :transport_destination_port, :transport_source_port,
32
+ :vlan_priority, :vlan_vid]
33
+ end
34
+ Then { flow_stats_request.table_id == 0xff }
35
+ Then { flow_stats_request.out_port == :none }
36
+ end
37
+ end
38
+ end
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.24.2
4
+ version: 0.25.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-08-04 00:00:00.000000000 Z
11
+ date: 2015-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bindata
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - ~>
116
116
  - !ruby/object:Gem::Version
117
- version: 4.6.3
117
+ version: 4.6.4
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - ~>
123
123
  - !ruby/object:Gem::Version
124
- version: 4.6.3
124
+ version: 4.6.4
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: guard-rubocop
127
127
  requirement: !ruby/object:Gem::Requirement
@@ -352,14 +352,14 @@ dependencies:
352
352
  requirements:
353
353
  - - ~>
354
354
  - !ruby/object:Gem::Version
355
- version: 0.32.1
355
+ version: 0.33.0
356
356
  type: :development
357
357
  prerelease: false
358
358
  version_requirements: !ruby/object:Gem::Requirement
359
359
  requirements:
360
360
  - - ~>
361
361
  - !ruby/object:Gem::Version
362
- version: 0.32.1
362
+ version: 0.33.0
363
363
  description: Pure ruby packet parser and generator.
364
364
  email:
365
365
  - yasuhito@gmail.com
@@ -377,6 +377,7 @@ files:
377
377
  - README.md
378
378
  - Rakefile
379
379
  - bin/_guard-core
380
+ - bin/byebug
380
381
  - bin/cc-tddium-post-worker
381
382
  - bin/cdiff
382
383
  - bin/coderay
@@ -446,7 +447,9 @@ files:
446
447
  - features/open_flow10/flow_mod_modify.raw
447
448
  - features/open_flow10/flow_mod_modify_strict.raw
448
449
  - features/open_flow10/flow_removed.raw
450
+ - features/open_flow10/flow_stats_reply.feature
449
451
  - features/open_flow10/flow_stats_reply.raw
452
+ - features/open_flow10/flow_stats_request.feature
450
453
  - features/open_flow10/flow_stats_request.raw
451
454
  - features/open_flow10/get_config_reply.raw
452
455
  - features/open_flow10/get_config_request.raw
@@ -644,6 +647,8 @@ files:
644
647
  - lib/pio/open_flow10/exact_match.rb
645
648
  - lib/pio/open_flow10/features.rb
646
649
  - lib/pio/open_flow10/flow_mod.rb
650
+ - lib/pio/open_flow10/flow_stats_reply.rb
651
+ - lib/pio/open_flow10/flow_stats_request.rb
647
652
  - lib/pio/open_flow10/hello.rb
648
653
  - lib/pio/open_flow10/match.rb
649
654
  - lib/pio/open_flow10/packet_in.rb
@@ -657,6 +662,7 @@ files:
657
662
  - lib/pio/open_flow10/set_vlan.rb
658
663
  - lib/pio/open_flow10/set_vlan_priority.rb
659
664
  - lib/pio/open_flow10/set_vlan_vid.rb
665
+ - lib/pio/open_flow10/stats_type.rb
660
666
  - lib/pio/open_flow10/strip_vlan_header.rb
661
667
  - lib/pio/open_flow13.rb
662
668
  - lib/pio/open_flow13/actions.rb
@@ -709,6 +715,8 @@ files:
709
715
  - spec/pio/open_flow10/features_reply_spec.rb
710
716
  - spec/pio/open_flow10/features_request_spec.rb
711
717
  - spec/pio/open_flow10/flow_mod_spec.rb
718
+ - spec/pio/open_flow10/flow_stats_reply_spec.rb
719
+ - spec/pio/open_flow10/flow_stats_request_spec.rb
712
720
  - spec/pio/open_flow10/hello_spec.rb
713
721
  - spec/pio/open_flow10/match_spec.rb
714
722
  - spec/pio/open_flow10/packet_in_spec.rb
@@ -759,224 +767,228 @@ required_rubygems_version: !ruby/object:Gem::Requirement
759
767
  version: '0'
760
768
  requirements: []
761
769
  rubyforge_project:
762
- rubygems_version: 2.4.7
770
+ rubygems_version: 2.4.6
763
771
  signing_key:
764
772
  specification_version: 4
765
773
  summary: Packet parser and generator.
766
774
  test_files:
767
- - spec/support/shared_examples_for_openflow_messages.rb
768
- - spec/pio/ipv4_address_spec.rb
769
- - spec/pio/open_flow/phy_port_spec.rb
770
- - spec/pio/dhcp/request_spec.rb
771
- - spec/pio/dhcp/offer_spec.rb
775
+ - spec/pio/arp/reply/options_spec.rb
776
+ - spec/pio/arp/reply_spec.rb
777
+ - spec/pio/arp/request/options_spec.rb
778
+ - spec/pio/arp/request_spec.rb
779
+ - spec/pio/arp_spec.rb
772
780
  - spec/pio/dhcp/ack_spec.rb
773
781
  - spec/pio/dhcp/discover_spec.rb
774
- - spec/pio/open_flow10/set_vlan_vid_spec.rb
775
- - spec/pio/open_flow10/features_request_spec.rb
776
- - spec/pio/open_flow10/echo_request_spec.rb
777
- - spec/pio/open_flow10/strip_vlan_header_spec.rb
778
- - spec/pio/open_flow10/set_transport_destination_port_spec.rb
779
- - spec/pio/open_flow10/features_reply_spec.rb
782
+ - spec/pio/dhcp/offer_spec.rb
783
+ - spec/pio/dhcp/request_spec.rb
784
+ - spec/pio/dhcp_spec.rb
785
+ - spec/pio/icmp/reply_spec.rb
786
+ - spec/pio/icmp/request_spec.rb
787
+ - spec/pio/icmp_spec.rb
788
+ - spec/pio/ipv4_address_spec.rb
789
+ - spec/pio/lldp/options_spec.rb
790
+ - spec/pio/mac_spec.rb
791
+ - spec/pio/open_flow/phy_port_spec.rb
780
792
  - spec/pio/open_flow10/echo_reply_spec.rb
793
+ - spec/pio/open_flow10/echo_request_spec.rb
781
794
  - spec/pio/open_flow10/enqueue_spec.rb
782
- - spec/pio/open_flow10/hello_spec.rb
783
- - spec/pio/open_flow10/set_ether_destination_address_spec.rb
795
+ - spec/pio/open_flow10/features_reply_spec.rb
796
+ - spec/pio/open_flow10/features_request_spec.rb
784
797
  - spec/pio/open_flow10/flow_mod_spec.rb
785
- - spec/pio/open_flow10/set_vlan_priority_spec.rb
786
- - spec/pio/open_flow10/wildcards_spec.rb
787
- - spec/pio/open_flow10/set_ip_tos_spec.rb
798
+ - spec/pio/open_flow10/flow_stats_reply_spec.rb
799
+ - spec/pio/open_flow10/flow_stats_request_spec.rb
800
+ - spec/pio/open_flow10/hello_spec.rb
801
+ - spec/pio/open_flow10/match_spec.rb
802
+ - spec/pio/open_flow10/packet_in_spec.rb
803
+ - spec/pio/open_flow10/packet_out_spec.rb
788
804
  - spec/pio/open_flow10/send_out_port_spec.rb
805
+ - spec/pio/open_flow10/set_ether_destination_address_spec.rb
789
806
  - spec/pio/open_flow10/set_ether_source_address_spec.rb
790
807
  - spec/pio/open_flow10/set_ip_destination_address_spec.rb
791
- - spec/pio/open_flow10/packet_in_spec.rb
792
- - spec/pio/open_flow10/set_transport_source_port_spec.rb
793
808
  - spec/pio/open_flow10/set_ip_source_address_spec.rb
794
- - spec/pio/open_flow10/match_spec.rb
795
- - spec/pio/open_flow10/packet_out_spec.rb
796
- - spec/pio/arp/request_spec.rb
797
- - spec/pio/arp/reply/options_spec.rb
798
- - spec/pio/arp/request/options_spec.rb
799
- - spec/pio/arp/reply_spec.rb
800
- - spec/pio/lldp/options_spec.rb
801
- - spec/pio/open_flow13/features_request_spec.rb
809
+ - spec/pio/open_flow10/set_ip_tos_spec.rb
810
+ - spec/pio/open_flow10/set_transport_destination_port_spec.rb
811
+ - spec/pio/open_flow10/set_transport_source_port_spec.rb
812
+ - spec/pio/open_flow10/set_vlan_priority_spec.rb
813
+ - spec/pio/open_flow10/set_vlan_vid_spec.rb
814
+ - spec/pio/open_flow10/strip_vlan_header_spec.rb
815
+ - spec/pio/open_flow10/wildcards_spec.rb
816
+ - spec/pio/open_flow13/echo_reply_spec.rb
802
817
  - spec/pio/open_flow13/echo_request_spec.rb
803
818
  - spec/pio/open_flow13/features_reply_spec.rb
804
- - spec/pio/open_flow13/echo_reply_spec.rb
819
+ - spec/pio/open_flow13/features_request_spec.rb
820
+ - spec/pio/open_flow13/goto_table_spec.rb
805
821
  - spec/pio/open_flow13/hello_spec.rb
822
+ - spec/pio/open_flow13/match_spec.rb
806
823
  - spec/pio/open_flow13/meter_spec.rb
807
- - spec/pio/open_flow13/write_metadata_spec.rb
808
- - spec/pio/open_flow13/goto_table_spec.rb
809
824
  - spec/pio/open_flow13/packet_in_spec.rb
810
- - spec/pio/open_flow13/match_spec.rb
811
825
  - spec/pio/open_flow13/packet_out_spec.rb
812
- - spec/pio/mac_spec.rb
813
- - spec/pio/icmp/request_spec.rb
814
- - spec/pio/icmp/reply_spec.rb
815
- - spec/pio/icmp_spec.rb
826
+ - spec/pio/open_flow13/write_metadata_spec.rb
816
827
  - spec/pio/open_flow_spec.rb
817
- - spec/pio/dhcp_spec.rb
818
- - spec/pio/arp_spec.rb
819
828
  - spec/spec_helper.rb
820
- - features/dhcp.pcap
821
- - features/udp_with_payload.raw
822
- - features/dhcp.feature
823
- - features/lldp.feature
829
+ - spec/support/shared_examples_for_openflow_messages.rb
830
+ - features/arp-storm.pcap
824
831
  - features/arp.feature
825
- - features/udp.feature
826
- - features/support/hooks.rb
827
- - features/support/env.rb
828
832
  - features/arp.pcap
833
+ - features/dhcp.feature
834
+ - features/dhcp.pcap
835
+ - features/icmp.feature
836
+ - features/icmp.pcap
837
+ - features/lldp.detailed.pcap
838
+ - features/lldp.feature
839
+ - features/lldp.minimal.pcap
840
+ - features/open_flow10/aggregate_stats_reply.raw
841
+ - features/open_flow10/aggregate_stats_request.raw
842
+ - features/open_flow10/barrier_reply.feature
843
+ - features/open_flow10/barrier_reply.raw
844
+ - features/open_flow10/barrier_request.feature
845
+ - features/open_flow10/barrier_request.raw
829
846
  - features/open_flow10/desc_stats_reply.raw
847
+ - features/open_flow10/desc_stats_request.raw
848
+ - features/open_flow10/echo_reply.feature
830
849
  - features/open_flow10/echo_reply.raw
831
- - features/open_flow10/packet_in.feature
832
- - features/open_flow10/flow_mod_modify_strict.raw
833
- - features/open_flow10/flow_mod_add.raw
850
+ - features/open_flow10/echo_request.feature
851
+ - features/open_flow10/echo_request.raw
852
+ - features/open_flow10/error.raw
853
+ - features/open_flow10/exact_match.feature
854
+ - features/open_flow10/features_reply.feature
834
855
  - features/open_flow10/features_reply.raw
835
856
  - features/open_flow10/features_request.feature
836
- - features/open_flow10/packet_in.raw
837
- - features/open_flow10/aggregate_stats_reply.raw
838
- - features/open_flow10/queue_get_config_reply.raw
839
- - features/open_flow10/echo_request.feature
840
857
  - features/open_flow10/features_request.raw
841
- - features/open_flow10/barrier_reply.feature
842
- - features/open_flow10/flow_stats_request.raw
843
- - features/open_flow10/packet_in_arp_request.raw
844
- - features/open_flow10/port_stats_request.raw
858
+ - features/open_flow10/flow_mod.feature
859
+ - features/open_flow10/flow_mod_add.raw
860
+ - features/open_flow10/flow_mod_delete.raw
845
861
  - features/open_flow10/flow_mod_delete_strict.raw
846
- - features/open_flow10/barrier_reply.raw
847
- - features/open_flow10/get_config_request.raw
848
- - features/open_flow10/vendor.raw
849
- - features/open_flow10/port_mod.raw
862
+ - features/open_flow10/flow_mod_modify.raw
863
+ - features/open_flow10/flow_mod_modify_strict.raw
864
+ - features/open_flow10/flow_removed.raw
865
+ - features/open_flow10/flow_stats_reply.feature
866
+ - features/open_flow10/flow_stats_reply.raw
867
+ - features/open_flow10/flow_stats_request.feature
868
+ - features/open_flow10/flow_stats_request.raw
850
869
  - features/open_flow10/get_config_reply.raw
851
- - features/open_flow10/exact_match.feature
852
- - features/open_flow10/features_reply.feature
870
+ - features/open_flow10/get_config_request.raw
871
+ - features/open_flow10/hello.feature
853
872
  - features/open_flow10/hello.raw
854
- - features/open_flow10/flow_removed.raw
855
- - features/open_flow10/set_config.raw
856
- - features/open_flow10/port_stats_reply.raw
873
+ - features/open_flow10/packet_in.feature
874
+ - features/open_flow10/packet_in.raw
875
+ - features/open_flow10/packet_in_arp_request.raw
876
+ - features/open_flow10/packet_in_cbench.raw
877
+ - features/open_flow10/packet_out.feature
857
878
  - features/open_flow10/packet_out.raw
858
- - features/open_flow10/table_stats_reply.raw
879
+ - features/open_flow10/port_mod.raw
880
+ - features/open_flow10/port_stats_reply.raw
881
+ - features/open_flow10/port_stats_request.raw
859
882
  - features/open_flow10/port_status.feature
860
- - features/open_flow10/barrier_request.feature
861
- - features/open_flow10/packet_in_cbench.raw
883
+ - features/open_flow10/port_status.raw
884
+ - features/open_flow10/queue_get_config_reply.raw
862
885
  - features/open_flow10/queue_get_config_request.raw
863
- - features/open_flow10/error.raw
864
- - features/open_flow10/vendor_stats_request.raw
865
- - features/open_flow10/flow_mod.feature
866
- - features/open_flow10/packet_out.feature
867
- - features/open_flow10/echo_reply.feature
868
- - features/open_flow10/flow_stats_reply.raw
869
- - features/open_flow10/desc_stats_request.raw
870
- - features/open_flow10/hello.feature
871
- - features/open_flow10/barrier_request.raw
886
+ - features/open_flow10/set_config.raw
887
+ - features/open_flow10/table_stats_reply.raw
872
888
  - features/open_flow10/table_stats_request.raw
873
- - features/open_flow10/port_status.raw
874
- - features/open_flow10/flow_mod_modify.raw
875
- - features/open_flow10/flow_mod_delete.raw
876
- - features/open_flow10/aggregate_stats_request.raw
877
- - features/open_flow10/echo_request.raw
878
- - features/lldp.minimal.pcap
879
- - features/open_flow_read.feature
889
+ - features/open_flow10/vendor.raw
890
+ - features/open_flow10/vendor_stats_request.raw
891
+ - features/open_flow13/action_copy_ttl_in.raw
892
+ - features/open_flow13/action_copy_ttl_out.raw
880
893
  - features/open_flow13/action_dec_mpls_ttl.raw
881
- - features/open_flow13/oxm_sctp_destination_field.raw
882
- - features/open_flow13/echo_request_body.raw
883
- - features/open_flow13/oxm_tunnel_id_field.raw
884
- - features/open_flow13/send_out_port.raw
885
- - features/open_flow13/oxm_ip_ecn_field.raw
886
- - features/open_flow13/packet_in.feature
887
- - features/open_flow13/oxm_no_fields.raw
888
- - features/open_flow13/goto_table.feature
889
- - features/open_flow13/oxm_ipv4_source_field.raw
890
- - features/open_flow13/send_out_port.feature
891
- - features/open_flow13/hello_version_bitmap.raw
892
- - features/open_flow13/flow_mod_no_match_or_instructions.raw
893
- - features/open_flow13/echo_reply_body.raw
894
- - features/open_flow13/features_reply.raw
895
- - features/open_flow13/features_request.feature
894
+ - features/open_flow13/action_dec_nw_ttl.raw
895
+ - features/open_flow13/action_group.raw
896
+ - features/open_flow13/action_pop_mpls.raw
896
897
  - features/open_flow13/action_pop_pbb.raw
897
- - features/open_flow13/action_copy_ttl_in.raw
898
- - features/open_flow13/packet_in.raw
899
- - features/open_flow13/oxm_masked_ether_destination_field.raw
900
- - features/open_flow13/oxm_vlan_pcp_field.raw
901
- - features/open_flow13/instruction_write_metadata.raw
902
- - features/open_flow13/oxm_masked_arp_tha_field.raw
903
- - features/open_flow13/meter.feature
904
- - features/open_flow13/oxm_tcp_source_field.raw
905
- - features/open_flow13/oxm_ipv6_destination_field.raw
906
- - features/open_flow13/action_set_field.raw
898
+ - features/open_flow13/action_pop_vlan.raw
907
899
  - features/open_flow13/action_push_mpls.raw
908
- - features/open_flow13/oxm_masked_tunnel_id_field.raw
909
- - features/open_flow13/instruction_goto_table.raw
900
+ - features/open_flow13/action_push_pbb.raw
901
+ - features/open_flow13/action_push_vlan.raw
902
+ - features/open_flow13/action_set_field.raw
903
+ - features/open_flow13/action_set_mpls_ttl.raw
904
+ - features/open_flow13/action_set_nw_ttl.raw
905
+ - features/open_flow13/action_set_queue.raw
906
+ - features/open_flow13/apply_actions.feature
907
+ - features/open_flow13/apply_actions.raw
908
+ - features/open_flow13/echo_reply.feature
909
+ - features/open_flow13/echo_reply_body.raw
910
+ - features/open_flow13/echo_reply_no_body.raw
910
911
  - features/open_flow13/echo_request.feature
912
+ - features/open_flow13/echo_request_body.raw
913
+ - features/open_flow13/echo_request_no_body.raw
914
+ - features/open_flow13/features_reply.feature
915
+ - features/open_flow13/features_reply.raw
916
+ - features/open_flow13/features_request.feature
911
917
  - features/open_flow13/features_request.raw
912
- - features/open_flow13/oxm_masked_ipv6_destination_field.raw
913
- - features/open_flow13/apply_actions.raw
914
- - features/open_flow13/action_set_queue.raw
915
- - features/open_flow13/oxm_arp_tha_field.raw
916
- - features/open_flow13/oxm_udp_field.raw
917
918
  - features/open_flow13/flow_add_apply_no_match.raw
918
- - features/open_flow13/action_push_vlan.raw
919
- - features/open_flow13/oxm_ip_dscp_field.raw
920
- - features/open_flow13/oxm_sctp_source_field.raw
921
- - features/open_flow13/features_reply.feature
922
- - features/open_flow13/instruction_write_actions.raw
923
- - features/open_flow13/instruction_meter.raw
924
- - features/open_flow13/oxm_masked_ether_source_field.raw
925
- - features/open_flow13/action_set_mpls_ttl.raw
926
- - features/open_flow13/oxm_in_port_field.raw
927
- - features/open_flow13/write_metadata.feature
928
- - features/open_flow13/oxm_tcp_field.raw
929
- - features/open_flow13/action_pop_vlan.raw
930
- - features/open_flow13/action_dec_nw_ttl.raw
919
+ - features/open_flow13/flow_mod.feature
931
920
  - features/open_flow13/flow_mod_add_apply_no_match.raw
921
+ - features/open_flow13/flow_mod_no_match_or_instructions.raw
922
+ - features/open_flow13/goto_table.feature
923
+ - features/open_flow13/hello.feature
924
+ - features/open_flow13/hello_no_version_bitmap.raw
925
+ - features/open_flow13/hello_version_bitmap.raw
926
+ - features/open_flow13/instruction_clear_actions.raw
927
+ - features/open_flow13/instruction_goto_table.raw
928
+ - features/open_flow13/instruction_meter.raw
929
+ - features/open_flow13/instruction_write_actions.raw
930
+ - features/open_flow13/instruction_write_metadata.raw
931
+ - features/open_flow13/match.feature
932
+ - features/open_flow13/meter.feature
933
+ - features/open_flow13/oxm_arp_op_field.raw
934
+ - features/open_flow13/oxm_arp_sha_field.raw
932
935
  - features/open_flow13/oxm_arp_spa_field.raw
933
- - features/open_flow13/oxm_in_phy_port_field.raw
934
- - features/open_flow13/oxm_icmpv4_type_field.raw
936
+ - features/open_flow13/oxm_arp_tha_field.raw
937
+ - features/open_flow13/oxm_arp_tpa_field.raw
938
+ - features/open_flow13/oxm_ether_destination_field.raw
939
+ - features/open_flow13/oxm_ether_source_field.raw
935
940
  - features/open_flow13/oxm_ether_type_field.raw
936
- - features/open_flow13/echo_reply_no_body.raw
937
- - features/open_flow13/oxm_tcp_destination_field.raw
938
- - features/open_flow13/packet_out.raw
939
- - features/open_flow13/oxm_masked_ipv4_source_field.raw
940
- - features/open_flow13/oxm_arp_sha_field.raw
941
- - features/open_flow13/match.feature
942
- - features/open_flow13/oxm_udp_source_field.raw
943
- - features/open_flow13/echo_request_no_body.raw
944
- - features/open_flow13/oxm_masked_ipv6_source_field.raw
945
- - features/open_flow13/action_group.raw
941
+ - features/open_flow13/oxm_experimenter_stratos_basic_dot11.raw
942
+ - features/open_flow13/oxm_icmpv4_code_field.raw
943
+ - features/open_flow13/oxm_icmpv4_type_field.raw
944
+ - features/open_flow13/oxm_in_phy_port_field.raw
945
+ - features/open_flow13/oxm_in_port_field.raw
946
+ - features/open_flow13/oxm_invalid_field.raw
947
+ - features/open_flow13/oxm_ip_dscp_field.raw
948
+ - features/open_flow13/oxm_ip_ecn_field.raw
949
+ - features/open_flow13/oxm_ipv4_destination_field.raw
950
+ - features/open_flow13/oxm_ipv4_source_field.raw
951
+ - features/open_flow13/oxm_ipv6_destination_field.raw
946
952
  - features/open_flow13/oxm_ipv6_source_field.raw
947
- - features/open_flow13/action_set_nw_ttl.raw
948
- - features/open_flow13/action_copy_ttl_out.raw
949
- - features/open_flow13/instruction_clear_actions.raw
953
+ - features/open_flow13/oxm_masked_arp_sha_field.raw
954
+ - features/open_flow13/oxm_masked_arp_spa_field.raw
955
+ - features/open_flow13/oxm_masked_arp_tha_field.raw
956
+ - features/open_flow13/oxm_masked_arp_tpa_field.raw
957
+ - features/open_flow13/oxm_masked_ether_destination_field.raw
958
+ - features/open_flow13/oxm_masked_ether_source_field.raw
950
959
  - features/open_flow13/oxm_masked_ipv4_destination_field.raw
951
- - features/open_flow13/flow_mod.feature
952
- - features/open_flow13/packet_out.feature
953
- - features/open_flow13/echo_reply.feature
960
+ - features/open_flow13/oxm_masked_ipv4_source_field.raw
961
+ - features/open_flow13/oxm_masked_ipv6_destination_field.raw
962
+ - features/open_flow13/oxm_masked_ipv6_source_field.raw
963
+ - features/open_flow13/oxm_masked_tunnel_id_field.raw
954
964
  - features/open_flow13/oxm_metadata_field.raw
955
- - features/open_flow13/oxm_experimenter_stratos_basic_dot11.raw
956
- - features/open_flow13/oxm_arp_tpa_field.raw
957
- - features/open_flow13/oxm_masked_arp_tpa_field.raw
958
- - features/open_flow13/oxm_masked_arp_spa_field.raw
959
965
  - features/open_flow13/oxm_metadata_masked_field.raw
960
- - features/open_flow13/apply_actions.feature
961
- - features/open_flow13/oxm_ipv4_destination_field.raw
966
+ - features/open_flow13/oxm_no_fields.raw
967
+ - features/open_flow13/oxm_sctp_destination_field.raw
968
+ - features/open_flow13/oxm_sctp_source_field.raw
969
+ - features/open_flow13/oxm_tcp_destination_field.raw
970
+ - features/open_flow13/oxm_tcp_field.raw
971
+ - features/open_flow13/oxm_tcp_source_field.raw
972
+ - features/open_flow13/oxm_tunnel_id_field.raw
962
973
  - features/open_flow13/oxm_udp_destination_field.raw
963
- - features/open_flow13/hello.feature
964
- - features/open_flow13/action_pop_mpls.raw
965
- - features/open_flow13/oxm_ether_source_field.raw
966
- - features/open_flow13/hello_no_version_bitmap.raw
967
- - features/open_flow13/oxm_ether_destination_field.raw
968
- - features/open_flow13/oxm_invalid_field.raw
969
- - features/open_flow13/oxm_arp_op_field.raw
970
- - features/open_flow13/oxm_masked_arp_sha_field.raw
971
- - features/open_flow13/oxm_icmpv4_code_field.raw
974
+ - features/open_flow13/oxm_udp_field.raw
975
+ - features/open_flow13/oxm_udp_source_field.raw
976
+ - features/open_flow13/oxm_vlan_pcp_field.raw
972
977
  - features/open_flow13/oxm_vlan_vid_field.raw
973
- - features/open_flow13/action_push_pbb.raw
978
+ - features/open_flow13/packet_in.feature
979
+ - features/open_flow13/packet_in.raw
980
+ - features/open_flow13/packet_out.feature
981
+ - features/open_flow13/packet_out.raw
982
+ - features/open_flow13/send_out_port.feature
983
+ - features/open_flow13/send_out_port.raw
984
+ - features/open_flow13/write_metadata.feature
985
+ - features/open_flow_read.feature
974
986
  - features/open_flow_version.feature
975
- - features/step_definitions/packet_data_steps.rb
976
987
  - features/step_definitions/open_flow_steps.rb
977
- - features/icmp.pcap
978
- - features/arp-storm.pcap
988
+ - features/step_definitions/packet_data_steps.rb
989
+ - features/support/env.rb
990
+ - features/support/hooks.rb
991
+ - features/udp.feature
979
992
  - features/udp_no_payload.raw
980
- - features/icmp.feature
981
- - features/lldp.detailed.pcap
993
+ - features/udp_with_payload.raw
982
994
  has_rdoc: