forked from djvergad/dash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdash-client-helper.cc
84 lines (73 loc) · 2.36 KB
/
dash-client-helper.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2008 INRIA
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Dimitrios Vergados <djvergad@gmail.com>
* Adapted from OnOffHelper by:
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "dash-client-helper.h"
#include "ns3/inet-socket-address.h"
#include "ns3/packet-socket-address.h"
#include "ns3/string.h"
#include "ns3/names.h"
namespace ns3 {
DashClientHelper::DashClientHelper (std::string tcpProtocol, Address address)
{
m_factory.SetTypeId ("ns3::DashClient");
m_factory.Set ("Protocol", StringValue (tcpProtocol));
m_factory.Set ("Remote", AddressValue (address));
}
DashClientHelper::DashClientHelper (std::string tcpProtocol, Address address, std::string algorithm)
{
m_factory.SetTypeId (algorithm);
m_factory.Set ("Protocol", StringValue (tcpProtocol));
m_factory.Set ("Remote", AddressValue (address));
}
void
DashClientHelper::SetAttribute (std::string name, const AttributeValue &value)
{
m_factory.Set (name, value);
}
ApplicationContainer
DashClientHelper::Install (Ptr<Node> node) const
{
return ApplicationContainer (InstallPriv (node));
}
ApplicationContainer
DashClientHelper::Install (std::string nodeName) const
{
Ptr<Node> node = Names::Find<Node> (nodeName);
return ApplicationContainer (InstallPriv (node));
}
ApplicationContainer
DashClientHelper::Install (NodeContainer c) const
{
ApplicationContainer apps;
for (NodeContainer::Iterator i = c.Begin (); i != c.End (); ++i)
{
apps.Add (InstallPriv (*i));
}
return apps;
}
Ptr<Application>
DashClientHelper::InstallPriv (Ptr<Node> node) const
{
Ptr<Application> app = m_factory.Create<Application> ();
node->AddApplication (app);
return app;
}
} // namespace ns3