Skip to content

Commit

Permalink
removes indent, nano 3339 time for files...
Browse files Browse the repository at this point in the history
  • Loading branch information
gallypette committed Mar 18, 2019
1 parent c533aa7 commit 864fc59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions d4-tlsf.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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 != "" {
Expand All @@ -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.")
}
Expand Down

0 comments on commit 864fc59

Please sign in to comment.