Changeset 8e11beb for tools/traceends
- Timestamp:
- 07/03/17 16:37:48 (4 years ago)
- Branches:
- cachetimestamps, develop, dpdk-ndag, etsilive, master, ndag_format, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance
- Children:
- 568a341
- Parents:
- ed5b2ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/traceends/traceends.cc
ree6e802 r8e11beb 309 309 c->src_pbytes += plen; 310 310 c->src_bytes += ip->ip_len; 311 c->last_active = ts; 311 if (ts != 0) 312 c->last_active = ts; 312 313 313 314 key = ip->ip_dst.s_addr; … … 324 325 c->dst_pbytes += plen; 325 326 c->dst_bytes += ip_len; 326 c->last_active = ts; 327 if (ts != 0) 328 c->last_active = ts; 327 329 } 328 330 … … 455 457 456 458 while (trace_read_packet(input,packet)>0) { 459 if (IS_LIBTRACE_META_PACKET(packet)) 460 continue; 457 461 if (per_packet(packet) < 1) 458 462 done = 1;
Note: See TracChangeset
for help on using the changeset viewer.