summaryrefslogtreecommitdiffstats
path: root/src/internal_api/trex_platform_api.h
diff options
context:
space:
mode:
authorIdo Barnea <ibarnea@cisco.com>2016-03-24 22:07:43 +0200
committerIdo Barnea <ibarnea@cisco.com>2016-03-24 22:07:43 +0200
commitf2488b028d289383086266a512757d0b545d2755 (patch)
treeea63cebcd6546816ff76644f257af2856841e9ca /src/internal_api/trex_platform_api.h
parent86767eec82bd816136833315d914a1e85e409e49 (diff)
Revert "Added flow parser for 82599 10G card. Added exceptions for flow stat"
This reverts commit 6c569e6bbf05d940a23028b5d61a13ce4fa2a489.
Diffstat (limited to 'src/internal_api/trex_platform_api.h')
-rw-r--r--src/internal_api/trex_platform_api.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/internal_api/trex_platform_api.h b/src/internal_api/trex_platform_api.h
index 90eaa7c7..dbca5a8a 100644
--- a/src/internal_api/trex_platform_api.h
+++ b/src/internal_api/trex_platform_api.h
@@ -26,7 +26,6 @@ limitations under the License.
#include <vector>
#include <string>
#include <string.h>
-#include "flow_stat_parser.h"
#include "trex_defs.h"
/**
@@ -35,7 +34,6 @@ limitations under the License.
* @author imarom (06-Oct-15)
*/
-
class TrexPlatformGlobalStats {
public:
TrexPlatformGlobalStats() {
@@ -153,7 +151,6 @@ public:
virtual bool get_promiscuous(uint8_t port_id) const = 0;
virtual void flush_dp_messages() const = 0;
virtual int get_active_pgids(flow_stat_active_t &result) const = 0;
- virtual CFlowStatParser *get_flow_stat_parser() const = 0;
virtual ~TrexPlatformApi() {}
};
@@ -183,7 +180,6 @@ public:
bool get_promiscuous(uint8_t port_id) const;
void flush_dp_messages() const;
int get_active_pgids(flow_stat_active_t &result) const;
- CFlowStatParser *get_flow_stat_parser() const;
};
@@ -245,7 +241,6 @@ public:
void flush_dp_messages() const {
}
int get_active_pgids(flow_stat_active_t &result) const {return 0;}
- CFlowStatParser *get_flow_stat_parser() const {return new CFlowStatParser();}
private:
int m_dp_core_count;