builds again

This commit is contained in:
Jeffrey Paul 2019-11-03 03:09:04 -08:00
parent fec35a8336
commit 3f5f386395
2 changed files with 8 additions and 6 deletions

View File

@ -28,6 +28,8 @@ type Instance struct {
errorCount uint errorCount uint
highestId int highestId int
hostName string hostName string
up bool
identified bool
impl ServerImplementation impl ServerImplementation
lastError *time.Time lastError *time.Time
lastSuccess *time.Time lastSuccess *time.Time
@ -51,16 +53,14 @@ func NewInstance(hostname string) *Instance {
func (i *Instance) setNextCheck(d *time.Duration) { func (i *Instance) setNextCheck(d *time.Duration) {
i.Lock() i.Lock()
defer i.Unlock() defer i.Unlock()
i.nextCheck = d then := time.Now().Add(*d)
i.nextCheck = &then
} }
func (i *Instance) dueForCheck() bool { func (i *Instance) dueForCheck() bool {
i.Lock() i.Lock()
defer i.Unlock() defer i.Unlock()
if i.nextCheck <= time.Now() { return i.nextCheck.Before(time.Now())
return true
}
return false
} }
func (i *Instance) detectNodeType() { func (i *Instance) detectNodeType() {

View File

@ -5,5 +5,7 @@ package main
type Toot struct { type Toot struct {
} }
func NewToot(input []bytes) *Toot { func NewToot(input []byte) *Toot {
t := new(Toot)
return t
} }