deviceDownloadState represents the state of all in progress downloads for all folders of a specific device.
| 106 | // deviceDownloadState represents the state of all in progress downloads |
| 107 | // for all folders of a specific device. |
| 108 | type deviceDownloadState struct { |
| 109 | mut sync.RWMutex |
| 110 | folders map[string]*deviceFolderDownloadState |
| 111 | } |
| 112 | |
| 113 | // Update updates internal state of what has been downloaded into the temporary |
| 114 | // files by the remote device for this specific folder. |
nothing calls this directly
no outgoing calls
no test coverage detected