communicate/events/event_host.go

46 lines
1.1 KiB
Go
Raw Normal View History

2016-11-28 05:15:31 +00:00
package events
2016-11-28 06:10:50 +00:00
2017-05-29 10:53:29 +00:00
import "git.loafle.net/overflow/collector/discovery/types"
2016-11-28 06:10:50 +00:00
type HostStartEvent struct {
ZoneCount int
Zone int64
}
func (i HostStartEvent) GetUrl() string {
return HOST_START
}
func NewHostStartEvent(zoneCount int, cidr int64) *HostStartEvent {
2016-11-28 06:10:50 +00:00
return &HostStartEvent{ZoneCount: zoneCount, Zone: cidr}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
type HostFoundEvent struct {
Zone int64
Host int64
}
func (i HostFoundEvent) GetUrl() string {
return HOST_FOUND
}
func NewHostFoundEvent(zone int64, host int64) *HostFoundEvent {
2016-11-28 06:10:50 +00:00
return &HostFoundEvent{Zone: zone, Host: host}
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
type HostEndEvent struct {
Zone int64
HostHistory []*types.HostScanHistory
2016-11-28 06:10:50 +00:00
}
func (i HostEndEvent) GetUrl() string {
return HOST_END
}
func NewHostEndEvent(zone int64, hh []*types.HostScanHistory) *HostEndEvent {
return &HostEndEvent{Zone: zone, HostHistory: hh}
2016-11-28 06:10:50 +00:00
}