diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-05-19 12:05:29 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-05-19 23:04:44 +0200 |
commit | 66451a0d658eabab18f37995659d81d429e0138e (patch) | |
tree | fecd83413ee9cf673cecc21c794e8dcd8272a69b /include | |
parent | bd4f365ba69281941c14b2c02d58f4b37a22b42d (diff) |
Bindings V2: rename init functions
The new naming is closer to the functionnal design
and closer to V1 names.
Change-Id: I8970338056a30564b84eaa1a7da6df3a9e6aa579
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include')
-rw-r--r-- | include/afb/afb-binding-v2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/afb/afb-binding-v2.h b/include/afb/afb-binding-v2.h index b949a2d7..91d64693 100644 --- a/include/afb/afb-binding-v2.h +++ b/include/afb/afb-binding-v2.h @@ -57,8 +57,8 @@ struct afb_binding_v2 const char *api; /* api name for the binding */ const char *specification; /* textual specification of the binding */ const struct afb_verb_v2 *verbs; /* array of descriptions of verbs terminated by a NULL name */ - int (*init)(struct afb_daemon daemon); - int (*start)(struct afb_service service); + int (*preinit)(struct afb_daemon daemon); + int (*init)(struct afb_service service); void (*onevent)(struct afb_service service, const char *event, struct json_object *object); unsigned concurrent: 1; /* allows concurrent requests to verbs */ }; |