|
1 |
/** |
2 |
* \mainpage An Introduction to ns-3 |
3 |
* |
4 |
* The ns-3 library is split across multiple modules: |
5 |
* - core: located in src/core and contains a number of facilities which |
6 |
* do not depend on any other module. Some of these facilities are |
7 |
* OS-dependent. |
8 |
* - simulator: located in src/simulator and contains event scheduling |
9 |
* facilities. |
10 |
* - common: located in src/common and contains facilities specific |
11 |
* to network simulations but shared by pretty much every model |
12 |
* of a network component. |
13 |
* - node: located in src/node. Defines the abstract interfaces which |
14 |
* must be implemented by every node and more specifically, by ipv4 nodes. |
15 |
* - devices: located in src/devices. Contains a set of MAC-level models |
16 |
* |
17 |
* The "core" module contains: |
18 |
* - a Functor class: ns3::Callback |
19 |
* - an os-independent interface to get access to the elapsed wall clock time: ns3::SystemWallClockMs |
20 |
* - a class to register regression tests with the test manager: ns3::Test and ns3::TestManager |
21 |
* - debugging facilities: \ref logging, \ref assert, \ref error |
22 |
* - \ref randomvariable |
23 |
* - \ref config |
24 |
* - a base class for objects which need to support reference counting |
25 |
* and QueryInterface: ns3::Object and ns3::InterfaceId |
26 |
* - a set of low-level trace facilities integrated in the ns3::Object system: \ref tracing |
27 |
* - a ns3::ComponentManager which can be used to manage the creation |
28 |
* of any object which derives from ns3::Object through an ns3::ClassId |
29 |
* - a smart-pointer class ns3::Ptr designed to work together with ns3::Object |
30 |
* |
31 |
* The "simulator" module contains: |
32 |
* - a time management class to hold a time and convert between various time units: ns3::Time |
33 |
* - a scheduler base class used to implement new simulation event schedulers: |
34 |
* ns3::Scheduler and ns3::SchedulerFactory |
35 |
* - a simulator class used to create, schedule and cancel events: ns3::Simulator |
36 |
* |
37 |
* The "core" module contains: |
38 |
* - a packet class to create and manipulate simulation packets: ns3::Packet, ns3::Header, |
39 |
* and ns3::Trailer. This packet class also supports per-packet ns3::Tag which are |
40 |
* globs of data which can be attached to any packet. |
41 |
* |
42 |
* The "node" module contains: |
43 |
* - a ns3::Node base class which should be subclassed by any new type of |
44 |
* network Node. |
45 |
* - models which abstract the MAC-layer from the IP layer protocols: |
46 |
* ns3::NetDevice and ns3::Channel. |
47 |
* - models which abstract the application-layer API: ns3::Application, |
48 |
* ns3::Socket, ns3::SocketFactory, and, ns3::Udp |
49 |
* |
50 |
* The "internet-node" module contains a set of classes which implement the |
51 |
* APIs defined in the "node" module: |
52 |
* - an Ipv4/Udp stack with socket support |
53 |
* - an ARP module |
54 |
* - an InternetNode class which is a Node subclass. |
55 |
* |
56 |
* The "devices" module contains: |
57 |
* - a PointToPoint MAC device: ns3::PointToPointNetDevice, ns3::PointToPointChannel, |
58 |
* and ns3::PointToPointTopology. |
59 |
*/ |
60 |
/** |
61 |
* \namespace ns3 |
62 |
* \brief Every class exported by the ns3 library is enclosed in the |
63 |
* ns3 namespace. |
64 |
*/ |
65 |
/** |
66 |
* \defgroup constants Constants |
67 |
* \brief Constants you can change |
68 |
*/ |