A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
packet-socket-server.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2014 Universita' di Firenze
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
* Author: Tommaso Pecorella <tommaso.pecorella@unifi.it>
18
*/
19
20
#ifndef PACKET_SOCKET_SERVER_H
21
#define PACKET_SOCKET_SERVER_H
22
23
#include "
packet-socket-address.h
"
24
25
#include "ns3/application.h"
26
#include "ns3/event-id.h"
27
#include "ns3/ptr.h"
28
#include "ns3/traced-callback.h"
29
30
namespace
ns3
31
{
32
33
class
Socket;
34
class
Packet;
35
48
class
PacketSocketServer
:
public
Application
49
{
50
public
:
55
static
TypeId
GetTypeId
();
56
57
PacketSocketServer
();
58
59
~PacketSocketServer
()
override
;
60
65
void
SetLocal
(
PacketSocketAddress
addr);
66
67
protected
:
68
void
DoDispose
()
override
;
69
70
private
:
71
void
StartApplication
()
override
;
72
void
StopApplication
()
override
;
73
78
void
HandleRead
(
Ptr<Socket>
socket);
79
80
uint32_t
m_pktRx
;
81
uint32_t
m_bytesRx
;
82
83
Ptr<Socket>
m_socket
;
84
PacketSocketAddress
m_localAddress
;
85
bool
m_localAddressSet
;
86
88
TracedCallback<Ptr<const Packet>
,
const
Address
&>
m_rxTrace
;
89
};
90
91
}
// namespace ns3
92
93
#endif
/* PACKET_SOCKET_SERVER_H */
ns3::Address
a polymophic address class
Definition:
address.h:101
ns3::Application
The base class for all ns3 applications.
Definition:
application.h:62
ns3::PacketSocketAddress
an address for a packet socket
Definition:
packet-socket-address.h:40
ns3::PacketSocketServer
A server using PacketSocket.
Definition:
packet-socket-server.h:49
ns3::PacketSocketServer::m_bytesRx
uint32_t m_bytesRx
Total bytes received.
Definition:
packet-socket-server.h:81
ns3::PacketSocketServer::m_rxTrace
TracedCallback< Ptr< const Packet >, const Address & > m_rxTrace
Traced Callback: received packets, source address.
Definition:
packet-socket-server.h:88
ns3::PacketSocketServer::HandleRead
void HandleRead(Ptr< Socket > socket)
Handle a packet received by the application.
Definition:
packet-socket-server.cc:113
ns3::PacketSocketServer::m_socket
Ptr< Socket > m_socket
Socket.
Definition:
packet-socket-server.h:83
ns3::PacketSocketServer::StopApplication
void StopApplication() override
Application specific shutdown code.
Definition:
packet-socket-server.cc:97
ns3::PacketSocketServer::m_localAddressSet
bool m_localAddressSet
Sanity check.
Definition:
packet-socket-server.h:85
ns3::PacketSocketServer::m_pktRx
uint32_t m_pktRx
The number of received packets.
Definition:
packet-socket-server.h:80
ns3::PacketSocketServer::~PacketSocketServer
~PacketSocketServer() override
Definition:
packet-socket-server.cc:68
ns3::PacketSocketServer::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition:
packet-socket-server.cc:46
ns3::PacketSocketServer::StartApplication
void StartApplication() override
Application specific startup code.
Definition:
packet-socket-server.cc:81
ns3::PacketSocketServer::SetLocal
void SetLocal(PacketSocketAddress addr)
set the local address and protocol to be used
Definition:
packet-socket-server.cc:105
ns3::PacketSocketServer::DoDispose
void DoDispose() override
Destructor implementation.
Definition:
packet-socket-server.cc:74
ns3::PacketSocketServer::PacketSocketServer
PacketSocketServer()
Definition:
packet-socket-server.cc:59
ns3::PacketSocketServer::m_localAddress
PacketSocketAddress m_localAddress
Local address.
Definition:
packet-socket-server.h:84
ns3::Ptr< Socket >
ns3::TracedCallback
Forward calls to a chain of Callback.
Definition:
traced-callback.h:54
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
packet-socket-address.h
src
network
utils
packet-socket-server.h
Generated on Sun Mar 3 2024 17:11:06 for ns-3 by
1.9.1