summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-node.c
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2015-11-26 09:32:31 +0000
committerRichard Hughes <richard@hughsie.com>2015-11-26 09:33:17 +0000
commit28c92dc20e8fbb7b1ae196a2af85a848e2b4372e (patch)
treebe239f300f40da5522ef46e49cb5ba6ce3710991 /libappstream-glib/as-node.c
parentf2300e8fda0733b973b3037cd7e46baafafa26a7 (diff)
downloadappstream-glib-28c92dc20e8fbb7b1ae196a2af85a848e2b4372e.tar.gz
Allow update_contact to be output in very limited conditions
Diffstat (limited to 'libappstream-glib/as-node.c')
-rw-r--r--libappstream-glib/as-node.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/libappstream-glib/as-node.c b/libappstream-glib/as-node.c
index db7f22d..32aadfb 100644
--- a/libappstream-glib/as-node.c
+++ b/libappstream-glib/as-node.c
@@ -1954,6 +1954,7 @@ struct _AsNodeContext {
AsAppSourceKind source_kind;
AsAppSourceKind output;
gdouble version;
+ gboolean output_trusted;
};
/**
@@ -2039,6 +2040,37 @@ as_node_context_set_source_kind (AsNodeContext *ctx, AsAppSourceKind source_kind
}
/**
+ * as_node_context_get_output_trusted: (skip)
+ * @ctx: a #AsNodeContext.
+ *
+ * Gets if the AppStream output is trusted to handle private data.
+ *
+ * Returns: output_trusted number
+ *
+ * Since: 0.5.5
+ **/
+gboolean
+as_node_context_get_output_trusted (AsNodeContext *ctx)
+{
+ return ctx->output_trusted;
+}
+
+/**
+ * as_node_context_set_output_trusted: (skip)
+ * @ctx: a #AsNodeContext.
+ * @output_trusted: boolean.
+ *
+ * Sets the AppStream output is trusted to handle private data.
+ *
+ * Since: 0.5.5
+ **/
+void
+as_node_context_set_output_trusted (AsNodeContext *ctx, gboolean output_trusted)
+{
+ ctx->output_trusted = output_trusted;
+}
+
+/**
* as_node_context_get_output: (skip)
* @ctx: a #AsNodeContext.
*