File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -186,10 +186,10 @@ bool Flow::initializeVectorFile(const char* name, const OutputFileFormat format)
186186 lock ();
187187 if (VectorFile.initialize (name, format)) {
188188 success = VectorFile.printf (
189- " AbsTime RelTime SeqNumber \t "
190- " AbsBytes AbsPackets AbsFrames \t "
191- " RelBytes RelPackets RelFrames \t "
192- " Delay PrevPacketDelayDiff Jitter \n " );
189+ " AbsTime\t RelTime \t SeqNumber \t "
190+ " AbsBytes\t AbsPackets \t AbsFrames \t "
191+ " RelBytes\t RelPackets \t RelFrames \t "
192+ " Delay\t PrevPacketDelayDiff \t Jitter \n " );
193193 VectorFile.nextLine ();
194194 }
195195 unlock ();
@@ -250,10 +250,10 @@ void Flow::updateReceptionStatistics(const unsigned long long now,
250250 // ====== Write line to flow's vector file ===============================
251251 if ( (MyMeasurement) && (MyMeasurement->getFirstStatisticsEvent () > 0 ) ) {
252252 VectorFile.printf (
253- " %06llu %llu %1.6f %llu\t "
254- " %llu %llu %llu\t "
255- " %u %u %u\t "
256- " %1.3f %1.3f %1.3f\n " ,
253+ " %06llu\t %llu\t %1.6f\t %llu\t "
254+ " %llu\t %llu\t %llu\t "
255+ " %u\t %u \t %u\t "
256+ " %1.3f\t %1.3f\t %1.3f\n " ,
257257 VectorFile.nextLine (), now,
258258 (double )(now - MyMeasurement->getFirstStatisticsEvent ()) / 1000000.0 ,
259259 seqNumber,
You can’t perform that action at this time.
0 commit comments