From d22d2b4785e2f4eafc8dda2ae032931f89c7e45f Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Mon, 5 Jun 2017 16:48:29 +0200 Subject: - Added new interface between applications and library: - Application retrieve resources using the common HTTP url format. - Translation between network names and application names performed by the library - Added basic error handling - Added utils for http connections - Added support for differetn build types (DEBUG, RELEASE, RELEASE with debug symbols, RELEASE with min size executable) - Added support for iOS Change-Id: I8ba2a5d8bd70a4f7721e1bbc2efe3fb81ed2c98c Signed-off-by: Mauro Sardara --- icnet/transport/icnet_transport_vegas_rto_estimator.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'icnet/transport/icnet_transport_vegas_rto_estimator.cc') diff --git a/icnet/transport/icnet_transport_vegas_rto_estimator.cc b/icnet/transport/icnet_transport_vegas_rto_estimator.cc index 6653518e..f1c10637 100644 --- a/icnet/transport/icnet_transport_vegas_rto_estimator.cc +++ b/icnet/transport/icnet_transport_vegas_rto_estimator.cc @@ -14,10 +14,12 @@ */ #include "icnet_transport_vegas_rto_estimator.h" -#include "icnet_socket_options_default_values.h" +#include "icnet_transport_socket_options_default_values.h" namespace icnet { +namespace transport { + RtoEstimator::RtoEstimator(Duration min_rto) : smoothed_rtt_(RtoEstimator::getInitialRtt().count()), rtt_variation_(0), @@ -44,4 +46,6 @@ RtoEstimator::Duration RtoEstimator::computeRto() const { return Duration(static_cast(rto)); } +} // end namespace transport + } // end namespace icnet \ No newline at end of file -- cgit 1.2.3-korg