Changes v1 -> v2: - create a base class of VLAN and inherit it to VLAN and SVLAN - change a default arg of ryu.lib.packet.vlan.svlan.__init__() - correct a commitment comment (IEEE 802.1ad, not IEEE 802.3ad) - correct values of ethertype in ryu.tests.unit.packet.test_pbb.test_build_itag()
Yuichi Ito (2): packet lib: vlan: support Q-in-Q (IEEE 802.1ad) packet lib: support Provider Backbone Bridges (PBB, IEEE 802.1ah) doc/source/library_packet_ref.rst | 3 + ryu/lib/packet/ethernet.py | 1 + ryu/lib/packet/pbb.py | 61 +++++++++++++ ryu/lib/packet/vlan.py | 80 +++++++++++++---- ryu/ofproto/ether.py | 4 +- ryu/tests/unit/packet/test_pbb.py | 167 ++++++++++++++++++++++++++++++++++++ ryu/tests/unit/packet/test_vlan.py | 118 +++++++++++++++++++++++++ 7 files changed, 414 insertions(+), 20 deletions(-) create mode 100644 ryu/lib/packet/pbb.py create mode 100644 ryu/tests/unit/packet/test_pbb.py -- 1.7.10.4 ------------------------------------------------------------------------------ Android is increasing in popularity, but the open development platform that developers love is also attractive to malware creators. Download this white paper to learn more about secure code signing practices that can help keep Android apps secure. http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
