Update and rename MantenerFIFO to MantenerFIFO.md
[vsorcdistro/.git] / ryu / doc / source / library_pcap.rst
1 *****************
2 PCAP file library
3 *****************
4
5 Introduction
6 ============
7
8 Ryu PCAP file library helps you to read/write PCAP file which file
9 format are described in `The Wireshark Wiki`_.
10
11 .. _The Wireshark Wiki: https://wiki.wireshark.org/Development/LibpcapFileFormat
12
13 Reading PCAP file
14 =================
15
16 For loading the packet data containing in PCAP files, you can use
17 pcaplib.Reader.
18
19 .. autoclass:: ryu.lib.pcaplib.Reader
20
21 Writing PCAP file
22 =================
23
24 For dumping the packet data which your RyuApp received, you can use
25 pcaplib.Writer.
26
27 .. autoclass:: ryu.lib.pcaplib.Writer