a4b2278dfd
address
67 lines
1.4 KiB
Go
67 lines
1.4 KiB
Go
package events
|
|
|
|
import "git.loafle.net/overflow/collector/discovery/types"
|
|
|
|
//////////////////////////////////////////////////////////////////////// Port Event Start
|
|
type PortStartEvent struct {
|
|
Zone int64
|
|
Host int64
|
|
PortCount uint16
|
|
Type string
|
|
}
|
|
|
|
func (i PortStartEvent) GetUrl() string {
|
|
return PORT_START
|
|
}
|
|
|
|
func NewPortStartEvent(zone int64, host int64, portCount uint16, t string) *PortStartEvent {
|
|
return &PortStartEvent{
|
|
Zone: zone,
|
|
Host: host,
|
|
PortCount: portCount,
|
|
Type: t,
|
|
}
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////// Port Event Found
|
|
type PortFoundEvent struct {
|
|
Zone int64
|
|
Host int64
|
|
Port uint16
|
|
Type string
|
|
}
|
|
|
|
func (i PortFoundEvent) GetUrl() string {
|
|
return PORT_FOUND
|
|
}
|
|
|
|
func NewPortFoundEvent(zone int64, host int64, port uint16, t string) *PortFoundEvent {
|
|
return &PortFoundEvent{
|
|
Zone: zone,
|
|
Host: host,
|
|
Port: port,
|
|
Type: t,
|
|
}
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////// Port Event Found
|
|
type PortEndEvent struct {
|
|
Zone int64
|
|
Host int64
|
|
Histories []*types.PortScanHistory
|
|
Type string
|
|
}
|
|
|
|
func (i PortEndEvent) GetUrl() string {
|
|
return PORT_END
|
|
}
|
|
|
|
func NewPortEndEvent(zone int64, host int64, history []*types.PortScanHistory, t string) *PortEndEvent {
|
|
return &PortEndEvent{
|
|
Zone: zone,
|
|
Host: host,
|
|
Histories: history,
|
|
Type: t,
|
|
}
|
|
}
|