File tree 2 files changed +2
-0
lines changed 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,7 @@ func (p *NetworkTrafficParser) packetToParsedNetworkTraffic(out chan<- akinet.Pa
269
269
}
270
270
271
271
func contextFromTCPPacket (p gopacket.Packet , t * layers.TCP ) * assemblerCtxWithSeq {
272
+ printer .V (6 ).Debugf ("contextFromTCPPacket created with packet timestamp: %v" , p .Metadata ().CaptureInfo .Timestamp )
272
273
return & assemblerCtxWithSeq {
273
274
ci : p .Metadata ().CaptureInfo ,
274
275
seq : reassembly .Sequence (t .Seq ),
Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ func (f *tcpFlow) reassemblyComplete() {
211
211
if err != nil {
212
212
f .handleUnparseable (t , numBytesConsumed )
213
213
} else if pnc != nil {
214
+ printer .V (6 ).Infof ("ReassemblyComplete parsed additional network traffic with ts: %v" , t )
214
215
f .outChan <- f .toPNT (t , t , pnc )
215
216
f .handleUnparseable (t , unused .Len ())
216
217
}
You can’t perform that action at this time.
0 commit comments