diff options
author | Mauro Sardara <msardara@cisco.com> | 2019-03-19 16:21:55 +0100 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2019-03-19 16:23:22 +0100 |
commit | 393a0a4018936134fa1b343523bbafaab606973d (patch) | |
tree | eb587157a3ff5235ec02611287c02c5e08487eba /utils/src | |
parent | 7266728a7857b038679fe35321ace30386f0c461 (diff) |
[HICN-125 HICN-126]
- Add MemBuf as return type of getPayload of transport::core::Packet
- Fix incremental index manager
Change-Id: Ib557d56b1bf42e3974364c611b825b21f1e3d3f1
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'utils/src')
-rw-r--r-- | utils/src/hiperf.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/src/hiperf.cc b/utils/src/hiperf.cc index e10907ccc..6f605aab9 100644 --- a/utils/src/hiperf.cc +++ b/utils/src/hiperf.cc @@ -533,7 +533,7 @@ class HIperfServer { if (!ec) { auto payload = content_objects_[content_objects_index_++ & mask_]->getPayload(); - producer_socket_->produce(payload.data(), payload.length()); + producer_socket_->produce(payload->data(), payload->length()); rtc_timer_.expires_from_now( configuration_.production_rate_.getMicrosecondsForPacket( configuration_.payload_size_)); @@ -625,7 +625,8 @@ void usage() { "the suffix to 0." << std::endl; std::cerr << "-B\t<bitrate>\t\t\t" - << "Bitrate for RTC producer, to be used with the -R option." << std::endl; + << "Bitrate for RTC producer, to be used with the -R option." + << std::endl; std::cerr << std::endl; std::cerr << "Client specific:" << std::endl; std::cerr << "-b\t<beta_parameter>\t\t" |