summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/structs.go b/structs.go
index 02d1b7f..7d9d2cc 100644
--- a/structs.go
+++ b/structs.go
@@ -23,12 +23,13 @@ type virtigoT struct {
// the stuff that is needed for a hypervisor
type HyperT struct {
- Hostname string // the hypervisor hostname
- Scan func() // the function to run to scan the hypervisor
- Autoscan bool // to scan or not to scan
- Delay time.Duration // how often to poll the hypervisor
- Dog *time.Ticker // the watchdog timer itself
- lastpoll time.Time // the last time the hypervisor polled
+ Hostname string // the hypervisor hostname
+ Scan func() // the function to run to scan the hypervisor
+ Autoscan bool // to scan or not to scan
+ Delay time.Duration // how often to poll the hypervisor
+ Dog *time.Ticker // the watchdog timer itself
+ lastpoll time.Time // the last time the hypervisor polled
+ killcount int
}
// the stuff that is needed for a hypervisor