aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-context.c
diff options
context:
space:
mode:
authorJose Bollo <jose.bollo@iot.bzh>2019-11-15 16:01:27 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2019-11-29 12:48:14 +0100
commite08d57c0e397018f0c463a66adc232f6358caef5 (patch)
treeb4812a69cffa12745743897f3169520509beba60 /src/afb-context.c
parent7c67e966b8292961ca748e47d18ff437214cec1c (diff)
Don't return the uuid
uuid is available in cookies and through a call to monitor/session Bug-AGL: SPEC-2968 Change-Id: I72912f3dc7985cca09e77c952e416b608711abbe Signed-off-by: Jose Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-context.c')
-rw-r--r--src/afb-context.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/afb-context.c b/src/afb-context.c
index 4cdaa6f7..8a1938a1 100644
--- a/src/afb-context.c
+++ b/src/afb-context.c
@@ -107,15 +107,6 @@ const char *afb_context_uuid(struct afb_context *context)
return context->session ? afb_session_uuid(context->session) : "";
}
-const char *afb_context_sent_uuid(struct afb_context *context)
-{
- if (context->session == NULL || context->closing || context->super)
- return NULL;
- if (!context->created)
- return NULL;
- return afb_session_uuid(context->session);
-}
-
void *afb_context_make(struct afb_context *context, int replace, void *(*make_value)(void *closure), void (*free_value)(void *item), void *closure)
{
assert(context->session != NULL);