diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-09-22 16:24:24 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-10-09 14:08:33 +0200 |
commit | 7a7268a5697b0b988bcabc00390878edee941b4e (patch) | |
tree | c64c412c342d33d01d7cb5a7bf3c00c55ad31055 /include/afb | |
parent | 4a6490b96d8ac2da6a19b4f251c005ff1b1e7d61 (diff) |
Provide API and VERB name of requests
Change-Id: I9a86c6314f871334231e50f9cea60b54aed434b9
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb')
-rw-r--r-- | include/afb/afb-request-itf.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/afb/afb-request-itf.h b/include/afb/afb-request-itf.h index eb7c5347..e542442c 100644 --- a/include/afb/afb-request-itf.h +++ b/include/afb/afb-request-itf.h @@ -51,12 +51,18 @@ struct afb_request /* interface for the request */ const struct afb_request_itf *itf; - /* current dynapi if dynapi (is NULL for bindings v1 and v2) */ + /* current dynapi (if any) */ struct afb_dynapi *dynapi; /* closure associated with the callback processing the verb of the request * as given at its declaration */ void *vcbdata; + + /* the name of the called verb */ + const char *api; + + /* the name of the called verb */ + const char *verb; }; /* |