blob: 25220c58664efac56dc4f2390c8943a0d3ee85c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package main
import (
"time"
)
type RawData struct {
ipSrc string
ipDst string
time time.Time
port int
packetSize int
}
func (rd *RawData) getVolSize() string {
return "medium"
}
type CleanData struct {
ipbSrc string
ipbDst string
time time.Time
port int
volume string
occurances int
}
func (cd *CleanData) equals(other *CleanData) bool {
return cd.ipbSrc == other.ipbSrc &&
cd.ipbDst == other.ipbDst &&
cd.time == other.time &&
cd.port == other.port &&
cd.volume == other.volume
}
|