| 33 | ) |
| 34 | |
| 35 | type localClient struct { |
| 36 | *suture.Supervisor |
| 37 | *cache |
| 38 | |
| 39 | myID protocol.DeviceID |
| 40 | addrList AddressLister |
| 41 | name string |
| 42 | evLogger events.Logger |
| 43 | |
| 44 | beacon beacon.Interface |
| 45 | localBcastStart time.Time |
| 46 | localBcastTick <-chan time.Time |
| 47 | forcedBcastTick chan time.Time |
| 48 | } |
| 49 | |
| 50 | const ( |
| 51 | BroadcastInterval = 30 * time.Second |
nothing calls this directly
no outgoing calls
no test coverage detected