From 864fc59d02f2b18338aa586eb468a62db69fac7a Mon Sep 17 00:00:00 2001 From: Jean-Louis Huynen Date: Mon, 18 Mar 2019 11:32:57 +0100 Subject: [PATCH] removes indent, nano 3339 time for files... --- d4-tlsf.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/d4-tlsf.go b/d4-tlsf.go index e038ada..b9fdddd 100644 --- a/d4-tlsf.go +++ b/d4-tlsf.go @@ -379,7 +379,7 @@ func main() { } assembler.AssembleWithContext(packet.NetworkLayer().NetworkFlow(), tcp, &c) } - if count%*flushEvery == 0{ + if count%*flushEvery == 0 { ref := packet.Metadata().CaptureInfo.Timestamp flushed, closed := assembler.FlushWithOptions(reassembly.FlushOptions{T: ref.Add(-*flushTf), TC: ref.Add(-*flushTc)}) Debug("Forced flush: %d flushed, %d closed (%s)", flushed, closed, ref) @@ -445,7 +445,7 @@ func processCompletedSession(cancelC <-chan string, jobQ <-chan d4tls.TLSSession } func output(t d4tls.TLSSession) { - jsonRecord, _ := json.MarshalIndent(t.Record, "", " ") + jsonRecord, _ := json.Marshal(t.Record) // If an output folder was specified for certificates if *outCerts != "" { @@ -464,7 +464,7 @@ func output(t d4tls.TLSSession) { // If an output folder was specified for json files if *outJSON != "" { if _, err := os.Stat(fmt.Sprintf("./%s", *outJSON)); !os.IsNotExist(err) { - err := ioutil.WriteFile(fmt.Sprintf("./%s/%s.json", *outJSON, t.Record.Timestamp.Format(time.RFC3339)), jsonRecord, 0644) + err := ioutil.WriteFile(fmt.Sprintf("./%s/%s.json", *outJSON, t.Record.Timestamp.Format(time.RFC3339Nano)), jsonRecord, 0644) if err != nil { panic("Could not write to file.") }