syncthing/lib/discover/discover.go

46 lines
1.3 KiB
Go
Raw Normal View History

// Copyright (C) 2015 The Syncthing Authors.
2014-09-29 12:43:32 -07:00
//
2015-03-07 13:36:35 -07:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.
2014-06-01 13:50:14 -07:00
2013-12-15 03:43:31 -07:00
package discover
import (
"context"
2013-12-15 03:43:31 -07:00
"time"
2013-12-24 09:10:49 -07:00
2015-09-22 10:38:46 -07:00
"github.com/syncthing/syncthing/lib/protocol"
2020-11-17 05:19:04 -07:00
"github.com/thejerf/suture/v4"
2013-12-15 03:43:31 -07:00
)
// A Finder provides lookup services of some kind.
type Finder interface {
Lookup(ctx context.Context, deviceID protocol.DeviceID) (address []string, err error)
Error() error
String() string
Cache() map[protocol.DeviceID]CacheEntry
2015-09-12 12:59:15 -07:00
}
type CacheEntry struct {
Addresses []string `json:"addresses"`
when time.Time // When did we get the result
found bool // Is it a success (cacheTime applies) or a failure (negCacheTime applies)?
validUntil time.Time // Validity time, overrides normal calculation
instanceID int64 // for local discovery, the instance ID (random on each restart)
}
// A FinderService is a Finder that has background activity and must be run as
// a suture.Service.
type FinderService interface {
Finder
suture.Service
2014-05-01 23:53:19 -07:00
}
// The AddressLister answers questions about what addresses we are listening
// on.
type AddressLister interface {
ExternalAddresses() []string
AllAddresses() []string
}