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