Browse Source

i don't think this is used at all anymore (#323)

Ryan Huber 4 years ago
parent
commit
43a3988afc
1 changed files with 1 additions and 3 deletions
  1. 1 3
      hostmap.go

+ 1 - 3
hostmap.go

@@ -64,8 +64,7 @@ type cachedPacket struct {
 type packetCallback func(t NebulaMessageType, st NebulaMessageSubType, h *HostInfo, p, nb, out []byte)
 type packetCallback func(t NebulaMessageType, st NebulaMessageSubType, h *HostInfo, p, nb, out []byte)
 
 
 type HostInfoDest struct {
 type HostInfoDest struct {
-	active bool
-	addr   *udpAddr
+	addr *udpAddr
 	//probes       [ProbeLen]bool
 	//probes       [ProbeLen]bool
 	probeCounter int
 	probeCounter int
 }
 }
@@ -675,7 +674,6 @@ func NewHostInfoDest(addr *udpAddr) *HostInfoDest {
 
 
 func (hid *HostInfoDest) MarshalJSON() ([]byte, error) {
 func (hid *HostInfoDest) MarshalJSON() ([]byte, error) {
 	return json.Marshal(m{
 	return json.Marshal(m{
-		"active":      hid.active,
 		"address":     hid.addr,
 		"address":     hid.addr,
 		"probe_count": hid.probeCounter,
 		"probe_count": hid.probeCounter,
 	})
 	})