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.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'icnet/transport/icnet_transport_vegas_rto_estimator.h') diff --git a/icnet/transport/icnet_transport_vegas_rto_estimator.h b/icnet/transport/icnet_transport_vegas_rto_estimator.h index 7b18533c..799d6fbc 100644 --- a/icnet/transport/icnet_transport_vegas_rto_estimator.h +++ b/icnet/transport/icnet_transport_vegas_rto_estimator.h @@ -16,12 +16,14 @@ #ifndef ICNET_VEGAS_TRANSPORT_PROTOCOL_RTT_ESTIMATOR_H_ #define ICNET_VEGAS_TRANSPORT_PROTOCOL_RTT_ESTIMATOR_H_ -#include "icnet_common.h" +#include "icnet_transport_common.h" // Implementation inspired from RFC6298 (https://tools.ietf.org/search/rfc6298#ref-JK88) namespace icnet { +namespace transport { + class RtoEstimator { public: typedef std::chrono::microseconds Duration; @@ -43,6 +45,8 @@ class RtoEstimator { double last_rto_; }; +} // end namespace transport + } // end namespace icnet -- cgit 1.2.3-korg