From 3c14546017efaf6373cf9449cb076298c0e4e180 Mon Sep 17 00:00:00 2001 From: Matthew Leeds Date: Wed, 28 Mar 2018 13:33:08 -0700 Subject: [PATCH] lib/repo-pull: Document all options in pull_from_remotes_async ostree_repo_pull_from_remotes_async() passes along some options to ostree_repo_pull_with_options(), so document them. Closes: #1519 Approved by: cgwalters --- src/libostree/ostree-repo-pull.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/libostree/ostree-repo-pull.c b/src/libostree/ostree-repo-pull.c index 89c67c8e..6170b011 100644 --- a/src/libostree/ostree-repo-pull.c +++ b/src/libostree/ostree-repo-pull.c @@ -5396,6 +5396,13 @@ copy_option (GVariantDict *master_options, * * `flags` (`i`): #OstreeRepoPullFlags to apply to the pull operation * * `inherit-transaction` (`b`): %TRUE to inherit an ongoing transaction on * the #OstreeRepo, rather than encapsulating the pull in a new one + * * `depth` (`i`): How far in the history to traverse; default is 0, -1 means infinite + * * `disable-static-deltas` (`b`): Do not use static deltas + * * `http-headers` (`a(ss)`): Additional headers to add to all HTTP requests + * * `subdirs` (`as`): Pull just these subdirectories + * * `update-frequency` (`u`): Frequency to call the async progress callback in + * milliseconds, if any; only values higher than 0 are valid + * * `append-user-agent` (`s`): Additional string to append to the user agent * * Since: 2017.8 */