X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api.h;h=c21f3bb90e6de624fa79c80b3f77b68f6457fc9b;hb=refs%2Fheads%2Fsandbox%2Fronan%2Ftest_libmicrohttpd_cleanup;hp=1a149886113a9be37f16c2a778094637d1b2c66f;hpb=46ac3bf9554a75e137d5209d27160c1137d42302;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api.h b/src/afb-api.h index 1a149886..c21f3bb9 100644 --- a/src/afb-api.h +++ b/src/afb-api.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016, 2017 "IoT.bzh" + * Copyright (C) 2016, 2017, 2018 "IoT.bzh" * Author: José Bollo * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -24,18 +24,26 @@ struct json_object; struct afb_api_itf { void (*call)(void *closure, struct afb_xreq *xreq); - int (*service_start)(void *closure, int share_session, int onneed, struct afb_apiset *apiset); + int (*service_start)(void *closure); void (*update_hooks)(void *closure); - int (*get_verbosity)(void *closure); - void (*set_verbosity)(void *closure, int level); + int (*get_logmask)(void *closure); + void (*set_logmask)(void *closure, int level); struct json_object *(*describe)(void *closure); + void (*unref)(void *closure); }; -struct afb_api +struct afb_api_item { void *closure; struct afb_api_itf *itf; - unsigned noconcurrency: 1; + const void *group; }; extern int afb_api_is_valid_name(const char *name); + +static inline int afb_api_is_public(const char *name) +{ + return *name != '.'; +} + +