summaryrefslogtreecommitdiffstats
path: root/discover/paths.h
diff options
context:
space:
mode:
authorSamuel Mendoza-Jonas <sam@mendozajonas.com>2017-03-23 17:42:37 +1100
committerSamuel Mendoza-Jonas <sam@mendozajonas.com>2017-07-11 14:32:26 +1000
commit5314cebf5fe766bdca6c779e785b8dfaa3808142 (patch)
tree133934cb709b765a7c1acd06433328fc53cc12bd /discover/paths.h
parent1ac262ed5224463c01525c680d1f58f7df48b943 (diff)
downloadpetitboot-5314cebf5fe766bdca6c779e785b8dfaa3808142.zip
petitboot-5314cebf5fe766bdca6c779e785b8dfaa3808142.tar.gz
discover/paths: Add network jobs to queue
Load tasks that start before the network is available will fail. Rather than just fail these tasks, add them to a queue that is processed once the network is ready. This helps users who try to request files early in setup, as well as very early running load tasks. Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Diffstat (limited to 'discover/paths.h')
-rw-r--r--discover/paths.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/discover/paths.h b/discover/paths.h
index 35673b7..67fe8a3 100644
--- a/discover/paths.h
+++ b/discover/paths.h
@@ -43,6 +43,10 @@ struct load_url_result {
*/
typedef void (*load_url_complete)(struct load_url_result *result, void *data);
+/* Start transfers that were waiting for network connectivity */
+void pending_network_jobs_start(void);
+void pending_network_jobs_cancel(void);
+
/* Load a (potentially remote) file, and return a guaranteed-local name */
struct load_url_result *load_url_async(void *ctx, struct pb_url *url,
load_url_complete complete, void *data,
OpenPOWER on IntegriCloud