summaryrefslogtreecommitdiffstats
path: root/src/stateless/dp/trex_stateless_dp_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stateless/dp/trex_stateless_dp_core.h')
-rw-r--r--src/stateless/dp/trex_stateless_dp_core.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/stateless/dp/trex_stateless_dp_core.h b/src/stateless/dp/trex_stateless_dp_core.h
index 187c40d8..eda1ae59 100644
--- a/src/stateless/dp/trex_stateless_dp_core.h
+++ b/src/stateless/dp/trex_stateless_dp_core.h
@@ -53,7 +53,9 @@ public:
/* states */
enum state_e {
ppSTATE_IDLE,
- ppSTATE_TRANSMITTING
+ ppSTATE_TRANSMITTING,
+ ppSTATE_PAUSE
+
};
public:
@@ -62,6 +64,10 @@ public:
void create(CFlowGenListPerThread * core);
+ bool pause_traffic(uint8_t port_id);
+
+ bool resume_traffic(uint8_t port_id);
+
bool stop_traffic(uint8_t port_id,
bool stop_on_id,
int event_id);
@@ -143,7 +149,17 @@ public:
double duration,
int m_event_id);
+
+ /* pause the streams, work only if all are continues */
+ void pause_traffic(uint8_t port_id);
+
+
+
+ void resume_traffic(uint8_t port_id);
+
+
/**
+ *
* stop all traffic for this core
*
*/