v2: These patches update the previous patches for the backward compatibility between Zebra protocol v2 (or earlier) and v3. For testing the backward compatibility, these patches are including pcap file for Zebra protocol both v2 and v3.
The following patches enable to parse/serialize Zebra protocol, which is used to control Quagga daemons (e.g., zebra, bgpd) and called ZAPI. http://www.nongnu.org/quagga/ FYI, I'm going to implement Zebra protocol service to control Quagga via ZAPI as "ryu/services/protocols/zebra" by using this packet library. IWASE Yusuke (3): packet/zebra: Add Zebra protocol parser test_zebra: Unit tests for Zebra packet library library_packet_ref: Add doc for Zebra packet library doc/source/library_packet_ref.rst | 2 + ryu/lib/packet/tcp.py | 10 +- ryu/lib/packet/zebra.py | 1854 ++++++++++++++++++++++++++++++ ryu/tests/packet_data/pcap/zebra_v2.pcap | Bin 0 -> 1236 bytes ryu/tests/packet_data/pcap/zebra_v3.pcap | Bin 0 -> 1250 bytes ryu/tests/unit/packet/test_zebra.py | 66 ++ 6 files changed, 1929 insertions(+), 3 deletions(-) create mode 100644 ryu/lib/packet/zebra.py create mode 100644 ryu/tests/packet_data/pcap/zebra_v2.pcap create mode 100644 ryu/tests/packet_data/pcap/zebra_v3.pcap create mode 100644 ryu/tests/unit/packet/test_zebra.py -- 2.7.4 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
