second try
[vsorcdistro/.git] / ryu / doc / source / library_mrt.rst
1 ****************
2 MRT file library
3 ****************
4
5 Introduction
6 ============
7
8 Ryu MRT file library helps you to read/write MRT
9 (Multi-Threaded Routing Toolkit) Routing Information Export Format
10 [`RFC6396`_].
11
12 .. _RFC6396: https://tools.ietf.org/html/rfc6396
13
14 Reading MRT file
15 ================
16
17 For loading the routing information contained in MRT files, you can use
18 mrtlib.Reader.
19
20 .. autoclass:: ryu.lib.mrtlib.Reader
21
22 Writing MRT file
23 ================
24
25 For dumping the routing information which your RyuApp generated, you can use
26 mrtlib.Writer.
27
28 .. autoclass:: ryu.lib.mrtlib.Writer