Adapting nepi to ns3.11
[nepi.git] / src / nepi / testbeds / ns3 / traces_metadata.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 traces = dict({
5     "p2ppcap": dict({
6                 "name": "P2PPcapTrace",
7                 "help": "Trace to sniff packets from a P2P network device"
8               }),
9     "p2pascii": dict({
10                 "name": "P2PAsciiTrace",
11                 "help": "Ascii trace from a P2P network device"
12               }),
13     "csmapcap_promisc": dict({
14                 "name": "CsmaPromiscPcapTrace",
15                 "help": "Trace to sniff packets from a Csma network device in promiscuous mode"
16               }),
17     "csmapcap": dict({
18                 "name": "CsmaPcapTrace",
19                 "help": "Trace to sniff packets from a Csma network device"
20               }),
21     "fdpcap": dict({
22                 "name": "FdPcapTrace",
23                 "help": "Trace to sniff packets from a file descriptor network device"
24               }),
25     "yanswifipcap": dict({
26                 "name": "YansWifiPhyPcapTrace",
27                 "help": "Trace to sniff packets from a Wifi network device"
28               }),
29     "wimaxpcap": dict({
30                 "name": "WimaxPcapTrace",
31                 "help": "Trace to sniff packets from a wimax network station"
32               }),
33     "wimaxascii": dict({
34                 "name": "WimaxAsciiTrace",
35                 "help": "Ascii trace from a wimax network station"
36               }),
37     "rtt": dict({
38                 "name": "Rtt",
39                 "help": "Gnuplot-able trace of round trip times"
40     })
41 })