()
| 279 | } |
| 280 | |
| 281 | func (f *FolderConfiguration) DeviceIDs() []protocol.DeviceID { |
| 282 | deviceIDs := make([]protocol.DeviceID, len(f.Devices)) |
| 283 | for i, n := range f.Devices { |
| 284 | deviceIDs[i] = n.DeviceID |
| 285 | } |
| 286 | return deviceIDs |
| 287 | } |
| 288 | |
| 289 | func (f *FolderConfiguration) prepare(myID protocol.DeviceID, existingDevices map[protocol.DeviceID]*DeviceConfiguration) { |
| 290 | // Ensure that |
no outgoing calls