From 7a3be366c6473203bf9f6d75b945aba75ac3f53a Mon Sep 17 00:00:00 2001 From: imarom Date: Sun, 10 Apr 2016 12:52:59 +0300 Subject: some refinements and few refactors --- src/stateless/dp/trex_stream_node.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stateless/dp/trex_stream_node.h') 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); } -- cgit 1.2.3-korg