aboutsummaryrefslogtreecommitdiffstats
path: root/Input/DASHManager.h
diff options
context:
space:
mode:
authorjsamain <jsamain@cisco.com>2019-05-27 18:59:35 +0200
committerjsamain <jsamain@cisco.com>2019-05-27 18:59:35 +0200
commit2a876fc0d7986dc1ecb169bdc41972fe0f33d0dd (patch)
tree4a907472bfbe31e3fa75e3291282af27d6ba6956 /Input/DASHManager.h
parent6dd3a9e9f88d7ef36707dad09f16685944aa182c (diff)
Update to be compliant with [HICN-206] Customize first part of the name for HTTP.
Added the -P option to set the IPv6 first word of the name. Change-Id: I321b22450d0efee713ddefef7405cf46ee381369 Signed-off-by: jsamain <jsamain@cisco.com>
Diffstat (limited to 'Input/DASHManager.h')
-rw-r--r--Input/DASHManager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Input/DASHManager.h b/Input/DASHManager.h
index 4bd301e7..62c4bff0 100644
--- a/Input/DASHManager.h
+++ b/Input/DASHManager.h
@@ -36,7 +36,7 @@ namespace input
class DASHManager : public IDASHReceiverObserver, public IBufferObserver
{
public:
- DASHManager (viper::managers::StreamType type, uint32_t maxCapacity, IDASHManagerObserver *multimediaStream, libdash::framework::mpd::MPDWrapper *mpdWrapper, bool icnEnabled, double icnAlpha, bool nodecoding, float beta, float drop);
+ DASHManager (viper::managers::StreamType type, uint32_t maxCapacity, IDASHManagerObserver *multimediaStream, libdash::framework::mpd::MPDWrapper *mpdWrapper, bool icnEnabled, double icnAlpha, bool nodecoding, float beta, float drop, std::string v6FirstWord);
virtual ~DASHManager ();
bool start();
@@ -66,6 +66,7 @@ public:
private:
float beta;
float drop;
+ std::string v6FirstWord;
buffer::Buffer<MediaObject> *buffer;
DASHReceiver *receiver;
uint32_t readSegmentCount;