X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=blobdiff_plain;f=src%2Fafb-context.c;fp=src%2Fafb-context.c;h=6057e69dd72fba402f3a020525117c44467c8936;hp=fd39493906ceb4786b9f6a0565e30160d78da781;hb=29ae81fa15c6080fd27929f4cc78e1289cb920e9;hpb=1b240e6b92eb3762594312cc603180ae5ce77f72 diff --git a/src/afb-context.c b/src/afb-context.c index fd394939..6057e69d 100644 --- a/src/afb-context.c +++ b/src/afb-context.c @@ -50,12 +50,19 @@ void afb_context_init(struct afb_context *context, struct afb_session *session, init_context(context, afb_session_addref(session), token); } +void afb_context_init_validated(struct afb_context *context, struct afb_session *session) +{ + afb_context_init(context, session, NULL); + context->validated = 1; +} + void afb_context_subinit(struct afb_context *context, struct afb_context *super) { context->session = super->session; context->flags = 0; context->super = super; context->api_key = NULL; + context->token = NULL; context->validated = super->validated; } @@ -75,6 +82,14 @@ int afb_context_connect(struct afb_context *context, const char *uuid, const cha return 0; } +int afb_context_connect_validated(struct afb_context *context, const char *uuid) +{ + int rc = afb_context_connect(context, uuid, NULL); + if (!rc) + context->validated = 1; + return rc; +} + void afb_context_disconnect(struct afb_context *context) { if (context->session && !context->super) {