From: Jeremy Kerr Date: Tue, 13 Dec 2016 01:13:50 +0000 (+0800) Subject: discover: Add reference to url in load_url_result X-Git-Tag: v1.4.0~20 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=1abc62990a5817de56a55470fb2c62e966134722;ds=sidebyside discover: Add reference to url in load_url_result We may want to access the loaded URL in a async handler. Signed-off-by: Jeremy Kerr Signed-off-by: Samuel Mendoza-Jonas --- diff --git a/discover/paths.c b/discover/paths.c index 7fcff9e..8d85619 100644 --- a/discover/paths.c +++ b/discover/paths.c @@ -383,6 +383,7 @@ struct load_url_result *load_url_async(void *ctx, struct pb_url *url, task->async = async_cb != NULL; task->result = talloc_zero(ctx, struct load_url_result); task->result->task = task; + task->result->url = url; task->process = process_create(task); if (task->async) { task->async_cb = async_cb; diff --git a/discover/paths.h b/discover/paths.h index ed0e153..191b8dc 100644 --- a/discover/paths.h +++ b/discover/paths.h @@ -30,6 +30,7 @@ struct load_url_result { LOAD_CANCELLED, } status; + struct pb_url *url; const char *local; bool cleanup_local; struct load_task *task; diff --git a/test/parser/utils.c b/test/parser/utils.c index 6bc7cc5..9d40d2b 100644 --- a/test/parser/utils.c +++ b/test/parser/utils.c @@ -353,6 +353,7 @@ struct load_url_result *load_url_async(void *ctx, struct pb_url *url, return NULL; result->local = talloc_strdup(result, tmp); + result->url = url; if (rc < 0) result->status = LOAD_ERROR; else