A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
udp-server.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2007,2008,2009 INRIA, UDCAST
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: Amine Ismail <amine.ismail@sophia.inria.fr>
18 * <amine.ismail@udcast.com>
19 *
20 */
21
22#ifndef UDP_SERVER_H
23#define UDP_SERVER_H
24
25#include "packet-loss-counter.h"
26
27#include "ns3/address.h"
28#include "ns3/application.h"
29#include "ns3/event-id.h"
30#include "ns3/ptr.h"
31#include "ns3/traced-callback.h"
32
33namespace ns3
34{
49class UdpServer : public Application
50{
51 public:
56 static TypeId GetTypeId();
57 UdpServer();
58 ~UdpServer() override;
63 uint32_t GetLost() const;
64
69 uint64_t GetReceived() const;
70
75 uint16_t GetPacketWindowSize() const;
76
83 void SetPacketWindowSize(uint16_t size);
84
85 protected:
86 void DoDispose() override;
87
88 private:
89 void StartApplication() override;
90 void StopApplication() override;
91
99 void HandleRead(Ptr<Socket> socket);
100
101 uint16_t m_port;
104 uint64_t m_received;
106
109
112};
113
114} // namespace ns3
115
116#endif /* UDP_SERVER_H */
a polymophic address class
Definition: address.h:100
The base class for all ns3 applications.
Definition: application.h:61
A class to count the number of lost packets.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:78
Forward calls to a chain of Callback.
a unique identifier for an interface.
Definition: type-id.h:59
A UDP server, receives UDP packets from a remote host.
Definition: udp-server.h:50
Ptr< Socket > m_socket6
IPv6 Socket.
Definition: udp-server.h:103
TracedCallback< Ptr< const Packet > > m_rxTrace
Callbacks for tracing the packet Rx events.
Definition: udp-server.h:108
~UdpServer() override
Definition: udp-server.cc:82
uint16_t m_port
Port on which we listen for incoming packets.
Definition: udp-server.h:101
uint64_t GetReceived() const
Returns the number of received packets.
Definition: udp-server.cc:109
void StartApplication() override
Application specific startup code.
Definition: udp-server.cc:123
Ptr< Socket > m_socket
IPv4 Socket.
Definition: udp-server.h:102
void HandleRead(Ptr< Socket > socket)
Handle a packet reception.
Definition: udp-server.cc:166
static TypeId GetTypeId()
Get the type ID.
Definition: udp-server.cc:45
PacketLossCounter m_lossCounter
Lost packet counter.
Definition: udp-server.h:105
void SetPacketWindowSize(uint16_t size)
Set the size of the window used for checking loss.
Definition: udp-server.cc:95
TracedCallback< Ptr< const Packet >, const Address &, const Address & > m_rxTraceWithAddresses
Callbacks for tracing the packet Rx events, includes source and destination addresses.
Definition: udp-server.h:111
uint32_t GetLost() const
Returns the number of lost packets.
Definition: udp-server.cc:102
uint64_t m_received
Number of received packets.
Definition: udp-server.h:104
void DoDispose() override
Destructor implementation.
Definition: udp-server.cc:116
uint16_t GetPacketWindowSize() const
Returns the size of the window used for checking loss.
Definition: udp-server.cc:88
void StopApplication() override
Application specific shutdown code.
Definition: udp-server.cc:155
Every class exported by the ns3 library is enclosed in the ns3 namespace.