summaryrefslogtreecommitdiffstats
path: root/src/stateless/dp/trex_stream_node.h
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2016-04-10 12:52:59 +0300
committerimarom <imarom@cisco.com>2016-04-10 12:52:59 +0300
commit7a3be366c6473203bf9f6d75b945aba75ac3f53a (patch)
treee3809ff89be55a0ca7a9dcc4aca0c309388b7119 /src/stateless/dp/trex_stream_node.h
parent9823cf0a2acfa3eed27613bf357d82c241889cba (diff)
some refinements and few refactors
Diffstat (limited to 'src/stateless/dp/trex_stream_node.h')
-rw-r--r--src/stateless/dp/trex_stream_node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stateless/dp/trex_stream_node.h b/src/stateless/dp/trex_stream_node.h
index 19a27350..c85bf8b5 100644
--- a/src/stateless/dp/trex_stream_node.h
+++ b/src/stateless/dp/trex_stream_node.h
@@ -232,7 +232,7 @@ public:
set_state(CGenNodeStateless::ss_INACTIVE);
if ( thread->set_stateless_next_node(this,m_next_stream) ){
/* update the next stream time using isg and post phase */
- m_next_stream->update_refresh_time(m_time + m_ref_stream_info->m_mc_phase_post_sec);
+ m_next_stream->update_refresh_time(m_time + m_ref_stream_info->get_next_stream_delay_sec());
thread->m_node_gen.m_p_queue.push( (CGenNode *)m_next_stream);
}else{
@@ -242,7 +242,7 @@ public:
}else{
/* next burst is like starting a new stream - add pre and post phase */
- m_time += get_multi_ibg_sec() + m_ref_stream_info->m_mc_phase_post_sec + m_ref_stream_info->m_mc_phase_pre_sec;
+ m_time += m_ref_stream_info->get_next_burst_delay_sec();
m_single_burst = m_single_burst_refill;
thread->m_node_gen.m_p_queue.push( (CGenNode *)this);
}