aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/include/ITCPConnection.h
diff options
context:
space:
mode:
authorAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-06 14:22:24 +0200
committerAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-07 15:01:28 +0200
commit6358e611e09092ad121f4a85e548c0d9411ab09f (patch)
tree1e9ac163ce10ab44402dcce1566b7920afbe1bf1 /src/libdash/include/ITCPConnection.h
parentdca773280df13ce3ecc6d306dffd603715cf25a5 (diff)
update applications to use new version libicnet
Change-Id: I4b2381a13cf64488baf83056fc1fa11b359d1147 Signed-off-by: Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>
Diffstat (limited to 'src/libdash/include/ITCPConnection.h')
-rw-r--r--src/libdash/include/ITCPConnection.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/libdash/include/ITCPConnection.h b/src/libdash/include/ITCPConnection.h
deleted file mode 100644
index 3d4f4867..00000000
--- a/src/libdash/include/ITCPConnection.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * @class dash::metrics::ITCPConnection
- * @brief This interface is needed for accessing the attributes and the content of a <tt><b>TCP Connection</b></tt>
- * as specified in <em>ISO/IEC 23009-1, Part 1, 2012</em>, annex D.4.2
- * @see
- *
- * @author bitmovin Softwareentwicklung OG \n
- * Email: libdash-dev@vicky.bitmovin.net
- * @version 2.1
- * @date 2013
- * @copyright bitmovin Softwareentwicklung OG, All Rights Reserved \n\n
- * This source code and its use and distribution, is subject to the terms
- * and conditions of the applicable license agreement.
- */
-
-#ifndef ITCTPCONNECTION_H_
-#define ITCTPCONNECTION_H_
-
-#include "config.h"
-
-namespace dash
-{
- namespace metrics
- {
- class ITCPConnection
- {
- public:
- virtual ~ITCPConnection (){}
-
- virtual uint32_t TCPId () const = 0;
- virtual const std::string& DestinationAddress () const = 0;
- virtual const std::string& ConnectionOpenedTime () const = 0;
- virtual const std::string& ConnectionClosedTime () const = 0;
- virtual uint64_t ConnectionTime () const = 0;
-
- };
- }
-}
-
-#endif /* ITCTPCONNECTION_H_ */