diff options
Diffstat (limited to 'src/stateless/trex_stream.cpp')
-rw-r--r-- | src/stateless/trex_stream.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/stateless/trex_stream.cpp b/src/stateless/trex_stream.cpp index 1a78ab34..5bc9421f 100644 --- a/src/stateless/trex_stream.cpp +++ b/src/stateless/trex_stream.cpp @@ -27,11 +27,10 @@ limitations under the License. TrexStream::TrexStream(uint8_t port_id, uint32_t stream_id) : m_port_id(port_id), m_stream_id(stream_id) { /* default values */ - m_isg_usec = 0; - m_next_stream_id = -1; - m_loop_count = 0; - m_enable = false; - m_start = false; + m_isg_usec = 0; + m_next_stream_id = -1; + m_enabled = false; + m_self_start = false; m_pkt = NULL; m_pkt_len = 0; |