/* Itay Marom Cisco Systems, Inc. */ /* Copyright (c) 2015-2015 Cisco Systems, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include #include #include /************************* start traffic message ************************/ TrexStatelessDpStart::TrexStatelessDpStart(TrexStreamsCompiledObj *obj, double duration) : m_obj(obj), m_duration(duration) { } /** * clone for DP start message * */ TrexStatelessCpToDpMsgBase * TrexStatelessDpStart::clone() { TrexStreamsCompiledObj *new_obj = m_obj->clone(); TrexStatelessCpToDpMsgBase *new_msg = new TrexStatelessDpStart(new_obj, m_duration); return new_msg; } TrexStatelessDpStart::~TrexStatelessDpStart() { if (m_obj) { delete m_obj; } } bool TrexStatelessDpStart::handle(TrexStatelessDpCore *dp_core) { dp_core->start_traffic(m_obj, m_duration); return true; } /************************* stop traffic message ************************/ bool TrexStatelessDpStop::handle(TrexStatelessDpCore *dp_core) { dp_core->stop_traffic(m_port_id); return true; } /** * clone for DP stop message * */ TrexStatelessCpToDpMsgBase * TrexStatelessDpStop::clone() { TrexStatelessCpToDpMsgBase *new_msg = new TrexStatelessDpStop(m_port_id); return new_msg; }