summaryrefslogtreecommitdiff
path: root/datastructs.go
blob: c885dea56654479da8c153c795f7052f0aa79426 (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
package main

type RawData struct {
	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.ipdbSrc == other.ipbSrc &&
		cd.ipbDst == other.ipbDst &&
		cd.time == other.time &&
		cd.port == other.port &&
		cd.volume == other.volume
}