Skip to content

Commit

Permalink
do not use '#' before header line in csv's
Browse files Browse the repository at this point in the history
  • Loading branch information
olivermichel committed Jun 17, 2024
1 parent fb2c3ae commit c7224ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/zoom_flows_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ int main(int argc, char** argv) {
last_ts = pkt.ts.tv_sec;
last_total_pkt_count = mac_counter.count();

rate_out << "#ts_s,total_pkts,zoom_pkts,zoom_bytes" << std::endl;
rate_out << "ts_s,total_pkts,zoom_pkts,zoom_bytes" << std::endl;
}

if (pkt.ts.tv_sec > last_ts) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/zoom_analyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ void zoom::analyzer::enable_pkt_log(const std::string& file_path) {

_pkt_log.open(file_path);

_pkt_log.stream << "#ts_s,ts_us,dir,flow_type,ip_proto,ip_src,tp_src,ip_dst,tp_dst,media_type,"
_pkt_log.stream << "ts_s,ts_us,dir,flow_type,ip_proto,ip_src,tp_src,ip_dst,tp_dst,media_type,"
<< "pkts_in_frame,ssrc,pt,rtp_seq,rtp_ts,pl_len,rtp_ext1,drop" << std::endl;
}

Expand Down

0 comments on commit c7224ee

Please sign in to comment.