summaryrefslogtreecommitdiffstats
path: root/src/trex_port_attr.h
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2016-11-16 17:26:59 +0200
committerimarom <imarom@cisco.com>2016-11-16 17:26:59 +0200
commite46e3f598e52112b9db21d6faabde7a5c87341cb (patch)
tree1d2879e82277bfe17788c788ddcf4584f1be42e1 /src/trex_port_attr.h
parent558ce764c2a5feaf376b562e455a2e9c1115701a (diff)
RX features - ARP resolve
Signed-off-by: imarom <imarom@cisco.com>
Diffstat (limited to 'src/trex_port_attr.h')
-rwxr-xr-xsrc/trex_port_attr.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/trex_port_attr.h b/src/trex_port_attr.h
index 68f9f82e..eb7c85de 100755
--- a/src/trex_port_attr.h
+++ b/src/trex_port_attr.h
@@ -24,6 +24,7 @@ limitations under the License.
#include "common/basic_utils.h"
#include <json/json.h>
#include "trex_stateless_rx_defs.h"
+#include <string.h>
/**
* destination port attribute
@@ -34,10 +35,7 @@ private:
static const uint8_t g_dummy_mac[6];
public:
- DestAttr() {
- /* use a dummy MAC as default */
- set_dest_mac(g_dummy_mac);
- }
+ DestAttr(uint8_t port_id);
enum dest_type_e {
DEST_TYPE_IPV4 = 1,
@@ -64,6 +62,7 @@ public:
m_src_ipv4 = ipv4;
memcpy(m_mac, mac, 6);
m_type = DEST_TYPE_IPV4;
+
}
/**
@@ -71,6 +70,7 @@ public:
*
*/
void set_dest_mac(const uint8_t *mac) {
+
m_src_ipv4 = 0;
memcpy(m_mac, mac, 6);
m_type = DEST_TYPE_MAC;
@@ -143,15 +143,16 @@ public:
private:
uint32_t m_src_ipv4;
- uint8_t m_mac[6];
+ uint8_t *m_mac;
dest_type_e m_type;
+ uint8_t m_port_id;
};
class TRexPortAttr {
public:
- TRexPortAttr() {
+ TRexPortAttr(uint8_t port_id) : m_dest(port_id) {
m_src_ipv4 = 0;
}
@@ -237,7 +238,7 @@ protected:
class DpdkTRexPortAttr : public TRexPortAttr {
public:
- DpdkTRexPortAttr(uint8_t port_id, bool is_virtual, bool fc_change_allowed) {
+ DpdkTRexPortAttr(uint8_t port_id, bool is_virtual, bool fc_change_allowed) : TRexPortAttr(port_id) {
m_port_id = port_id;
m_rx_filter_mode = RX_FILTER_MODE_HW;
@@ -288,7 +289,7 @@ private:
class SimTRexPortAttr : public TRexPortAttr {
public:
- SimTRexPortAttr() {
+ SimTRexPortAttr() : TRexPortAttr(0) {
m_link.link_speed = 10000;
m_link.link_duplex = 1;
m_link.link_autoneg = 0;