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_raaqm.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'icnet/transport/icnet_transport_raaqm.h') diff --git a/icnet/transport/icnet_transport_raaqm.h b/icnet/transport/icnet_transport_raaqm.h index dc5e72bd..adf3d439 100644 --- a/icnet/transport/icnet_transport_raaqm.h +++ b/icnet/transport/icnet_transport_raaqm.h @@ -19,10 +19,12 @@ #include "icnet_transport_vegas.h" #include "icnet_transport_vegas_rto_estimator.h" #include "icnet_transport_raaqm_data_path.h" -#include "icnet_rate_estimation.h" +#include "icnet_transport_rate_estimation.h" namespace icnet { +namespace transport { + class RaaqmTransportProtocol : public VegasTransportProtocol { public: RaaqmTransportProtocol(Socket *icnet_socket); @@ -95,6 +97,8 @@ class RaaqmTransportProtocol : public VegasTransportProtocol { double avg_rtt_; }; +} // end namespace transport + } // end namespace icnet #endif // ICNET_RAAQM_TRANSPORT_PROTOCOL_H_ -- cgit 1.2.3-korg