-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
42 lines (37 loc) · 871 Bytes
/
types.go
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
35
36
37
38
39
40
41
42
package main
import "net"
type Message struct {
Records []ServiceRecord `json:"records"`
}
type ServiceRecord struct {
ServiceIdentity
HostName string `json:"host"`
Port int `json:"port"`
IPs []net.IP `json:"ips"`
TXTRecords []string `json:"txt"`
}
func (r ServiceRecord) Equal(s ServiceRecord) bool {
b := r.ServiceIdentity == s.ServiceIdentity && r.HostName == s.HostName && r.Port == s.Port
if !b {
return false
}
if len(r.IPs) != len(s.IPs) || len(r.TXTRecords) != len(s.TXTRecords) {
return false
}
for i := range r.IPs {
if !r.IPs[i].Equal(s.IPs[i]) {
return false
}
}
for i := range r.TXTRecords {
if r.TXTRecords[i] != s.TXTRecords[i] {
return false
}
}
return true
}
type ServiceIdentity struct {
Instance string `json:"instance"`
Service string `json:"service"`
Domain string `json:"domain"`
}