summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorroot <root@crdc-asr1k-trex.cisco.com>2015-10-01 22:58:16 -0400
committerroot <root@crdc-asr1k-trex.cisco.com>2015-10-01 22:58:16 -0400
commite2b63ecc0544c82590c9aeb9a44a8a4bcb869cb6 (patch)
tree64466ca614bbd1a91a8856f4783da4c964bcc664 /src
parent894ec2ddcd9965f60c4bc7a0b48edf41bfc167d8 (diff)
minor change
Diffstat (limited to 'src')
-rwxr-xr-xsrc/tuple_gen.cpp7
-rwxr-xr-xsrc/tuple_gen.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/src/tuple_gen.cpp b/src/tuple_gen.cpp
index d725de44..3a477338 100755
--- a/src/tuple_gen.cpp
+++ b/src/tuple_gen.cpp
@@ -123,7 +123,6 @@ void CClientPool::Create(IP_DIST_t dist_value,
CreateBase();
}
-void delay(int msec);
bool CTupleGeneratorSmart::add_client_pool(IP_DIST_t client_dist,
uint32_t min_client,
@@ -136,7 +135,7 @@ bool CTupleGeneratorSmart::add_client_pool(IP_DIST_t client_dist,
assert(max_client>=min_client);
CClientPool* pool = new CClientPool();
pool->Create(client_dist, min_client, max_client,
- l_flow, t_cps, mac_info, has_mac_mapping,
+ l_flow, t_cps, mac_info, m_has_mac_mapping,
tcp_aging, udp_aging);
m_client_pool.push_back(pool);
@@ -171,13 +170,13 @@ bool CTupleGeneratorSmart::Create(uint32_t _id,
m_thread_id = thread_id;
m_id = _id;
m_was_init=true;
- has_mac_mapping = has_mac;
+ m_has_mac_mapping = has_mac;
return(true);
}
void CTupleGeneratorSmart::Delete(){
m_was_init=false;
- has_mac_mapping = false;
+ m_has_mac_mapping = false;
for (int idx=0;idx<m_client_pool.size();idx++) {
m_client_pool[idx]->Delete();
diff --git a/src/tuple_gen.h b/src/tuple_gen.h
index 8efa07a4..205014c5 100755
--- a/src/tuple_gen.h
+++ b/src/tuple_gen.h
@@ -632,7 +632,6 @@ private:
class CServerPool : public CServerPoolBase {
public:
- CIpPool *gen;
void GenerateTuple(CTupleBase & tuple) {
uint32_t idx = gen->generate_ip();
tuple.setServerAll(idx, gen->get_ip(idx));
@@ -656,6 +655,8 @@ public:
uint32_t get_total_ips() {
return gen->m_ip_info.size();
}
+private:
+ CIpPool *gen;
};
/* generate for each template */
@@ -712,7 +713,7 @@ public:
public:
CTupleGeneratorSmart(){
m_was_init=false;
- has_mac_mapping = false;
+ m_has_mac_mapping = false;
}
bool Create(uint32_t _id,
uint32_t thread_id, bool has_mac=false);
@@ -763,7 +764,7 @@ private:
std::vector<CClientPool*> m_client_pool;
std::vector<CServerPoolBase*> m_server_pool;
bool m_was_init;
- bool has_mac_mapping;
+ bool m_has_mac_mapping;
};
class CTupleTemplateGeneratorSmart {