A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
applications
model
bulk-send-application.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2010 Georgia Institute of Technology
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Author: George F. Riley <riley@ece.gatech.edu>
19
*/
20
21
#ifndef BULK_SEND_APPLICATION_H
22
#define BULK_SEND_APPLICATION_H
23
24
#include "ns3/address.h"
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
class
Address;
33
class
Socket;
34
68
class
BulkSendApplication
:
public
Application
69
{
70
public
:
75
static
TypeId
GetTypeId
(
void
);
76
77
BulkSendApplication
();
78
79
virtual
~BulkSendApplication
();
80
94
void
SetMaxBytes
(uint64_t maxBytes);
95
100
Ptr<Socket>
GetSocket
(
void
)
const
;
101
102
protected
:
103
virtual
void
DoDispose
(
void
);
104
private
:
105
// inherited from Application base class.
106
virtual
void
StartApplication
(
void
);
// Called at time specified by Start
107
virtual
void
StopApplication
(
void
);
// Called at time specified by Stop
108
112
void
SendData
();
113
114
Ptr<Socket>
m_socket
;
115
Address
m_peer
;
116
bool
m_connected
;
117
uint32_t
m_sendSize
;
118
uint64_t
m_maxBytes
;
119
uint64_t
m_totBytes
;
120
TypeId
m_tid
;
121
123
TracedCallback<Ptr<const Packet>
>
m_txTrace
;
124
125
private
:
130
void
ConnectionSucceeded
(
Ptr<Socket>
socket);
135
void
ConnectionFailed
(
Ptr<Socket>
socket);
139
void
DataSend
(
Ptr<Socket>
, uint32_t);
// for socket's SetSendCallback
140
};
141
142
}
// namespace ns3
143
144
#endif
/* BULK_SEND_APPLICATION_H */
ns3::BulkSendApplication::GetSocket
Ptr< Socket > GetSocket(void) const
Get the socket this application is attached to.
Definition:
bulk-send-application.cc:96
ns3::BulkSendApplication::~BulkSendApplication
virtual ~BulkSendApplication()
Definition:
bulk-send-application.cc:83
ns3::BulkSendApplication::SendData
void SendData()
Send data until the L4 transmission buffer is full.
Definition:
bulk-send-application.cc:178
ns3::Ptr< Socket >
ns3::TracedCallback
Forward calls to a chain of Callback.
Definition:
traced-callback.h:62
ns3::BulkSendApplication::ConnectionFailed
void ConnectionFailed(Ptr< Socket > socket)
Connection Failed (called by Socket through a callback)
Definition:
bulk-send-application.cc:227
ns3::BulkSendApplication::DoDispose
virtual void DoDispose(void)
Destructor implementation.
Definition:
bulk-send-application.cc:103
ns3::Address
a polymophic address class
Definition:
address.h:90
ns3::BulkSendApplication::StopApplication
virtual void StopApplication(void)
Application specific shutdown code.
Definition:
bulk-send-application.cc:160
ns3::Application
The base class for all ns3 applications.
Definition:
application.h:60
ns3::BulkSendApplication
Send as much traffic as possible, trying to fill the bandwidth.
Definition:
bulk-send-application.h:68
ns3::BulkSendApplication::StartApplication
virtual void StartApplication(void)
Application specific startup code.
Definition:
bulk-send-application.cc:113
ns3::BulkSendApplication::DataSend
void DataSend(Ptr< Socket >, uint32_t)
Send more data as soon as some has been transmitted.
Definition:
bulk-send-application.cc:233
ns3::BulkSendApplication::m_tid
TypeId m_tid
The type of protocol to use.
Definition:
bulk-send-application.h:120
ns3::BulkSendApplication::m_totBytes
uint64_t m_totBytes
Total bytes sent so far.
Definition:
bulk-send-application.h:119
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::BulkSendApplication::m_socket
Ptr< Socket > m_socket
Associated socket.
Definition:
bulk-send-application.h:114
ns3::BulkSendApplication::ConnectionSucceeded
void ConnectionSucceeded(Ptr< Socket > socket)
Connection Succeeded (called by Socket through a callback)
Definition:
bulk-send-application.cc:219
ns3::BulkSendApplication::SetMaxBytes
void SetMaxBytes(uint64_t maxBytes)
Set the upper bound for the total number of bytes to send.
Definition:
bulk-send-application.cc:89
ns3::BulkSendApplication::m_connected
bool m_connected
True if connected.
Definition:
bulk-send-application.h:116
ns3::BulkSendApplication::m_peer
Address m_peer
Peer address.
Definition:
bulk-send-application.h:115
ns3::BulkSendApplication::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
bulk-send-application.cc:41
ns3::BulkSendApplication::m_sendSize
uint32_t m_sendSize
Size of data to send each time.
Definition:
bulk-send-application.h:117
ns3::BulkSendApplication::m_maxBytes
uint64_t m_maxBytes
Limit total number of bytes sent.
Definition:
bulk-send-application.h:118
ns3::BulkSendApplication::m_txTrace
TracedCallback< Ptr< const Packet > > m_txTrace
Traced Callback: sent packets.
Definition:
bulk-send-application.h:123
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
ns3::BulkSendApplication::BulkSendApplication
BulkSendApplication()
Definition:
bulk-send-application.cc:75
Generated on Wed Nov 7 2018 10:01:47 for ns-3 by
1.8.14