A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
emu-fd-net-device-helper.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2012 INRIA, 2012 University of Washington
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 */
18
19#ifndef EMU_FD_NET_DEVICE_HELPER_H
20#define EMU_FD_NET_DEVICE_HELPER_H
21
23
24#include "ns3/attribute.h"
25#include "ns3/fd-net-device.h"
26#include "ns3/net-device-container.h"
27#include "ns3/node-container.h"
28#include "ns3/object-factory.h"
29
30#include <string>
31
32namespace ns3
33{
34
35/**
36 * \ingroup fd-net-device
37 * \brief build a set of FdNetDevice objects attached to a physical network
38 * interface
39 *
40 */
42{
43 public:
44 /**
45 * Construct a EmuFdNetDeviceHelper.
46 */
48
50 {
51 }
52
53 /**
54 * Get the device name of this device.
55 *
56 * \returns The device name of this device.
57 */
58 std::string GetDeviceName();
59
60 /**
61 * Set the device name of this device.
62 *
63 * \param deviceName The device name of this device.
64 */
65 void SetDeviceName(std::string deviceName);
66
67 /**
68 * \brief Request host qdisc bypass
69 * \param hostQdiscBypass to enable host qdisc bypass
70 */
71 void HostQdiscBypass(bool hostQdiscBypass);
72
73 protected:
74 /**
75 * This method creates an ns3::FdNetDevice attached to a physical network
76 * interface
77 *
78 * \param node The node to install the device in
79 * \returns A container holding the added net device.
80 */
81 Ptr<NetDevice> InstallPriv(Ptr<Node> node) const override;
82
83 /**
84 * Sets a file descriptor on the FileDescriptorNetDevice.
85 * \param device the device to install the file descriptor in
86 */
87 virtual void SetFileDescriptor(Ptr<FdNetDevice> device) const;
88
89 /**
90 * Call out to a separate process running as suid root in order to get a raw
91 * socket. We do this to avoid having the entire simulation running as root.
92 * \return the rawSocket number
93 */
94 virtual int CreateFileDescriptor() const;
95
96 /**
97 * The Unix/Linux name of the underlying device (e.g., eth0)
98 */
99 std::string m_deviceName;
100 bool m_hostQdiscBypass; //!< True if request host qdisc bypass
101};
102
103} // namespace ns3
104
105#endif /* EMU_FD_NET_DEVICE_HELPER_H */
build a set of FdNetDevice objects attached to a physical network interface
bool m_hostQdiscBypass
True if request host qdisc bypass.
std::string m_deviceName
The Unix/Linux name of the underlying device (e.g., eth0)
void HostQdiscBypass(bool hostQdiscBypass)
Request host qdisc bypass.
void SetDeviceName(std::string deviceName)
Set the device name of this device.
Ptr< NetDevice > InstallPriv(Ptr< Node > node) const override
This method creates an ns3::FdNetDevice attached to a physical network interface.
virtual void SetFileDescriptor(Ptr< FdNetDevice > device) const
Sets a file descriptor on the FileDescriptorNetDevice.
std::string GetDeviceName()
Get the device name of this device.
virtual int CreateFileDescriptor() const
Call out to a separate process running as suid root in order to get a raw socket.
EmuFdNetDeviceHelper()
Construct a EmuFdNetDeviceHelper.
build a set of FdNetDevice objects Normally we eschew multiple inheritance, however,...
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
Every class exported by the ns3 library is enclosed in the ns3 namespace.