diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-09-22 18:35:13 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-10-09 14:08:33 +0200 |
commit | 2b037bbfd58046219d9cd083ae9422b9fc200ad4 (patch) | |
tree | 20670c3ed14dfc86b65ff64ff7f53e32aa6d7d8f /include/afb/afb-request.h | |
parent | a4dcf977a6b9e517a0b32949b5967a6de5064f13 (diff) |
Add wrappers for accesses to internals
Change-Id: I6144b0ab21418dc98792f0eeef695f3df0fc11d3
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-request.h')
-rw-r--r-- | include/afb/afb-request.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/afb/afb-request.h b/include/afb/afb-request.h index 678922b3..fcab03c3 100644 --- a/include/afb/afb-request.h +++ b/include/afb/afb-request.h @@ -19,6 +19,26 @@ #include "afb-request-itf.h" +static inline struct afb_dynapi *afb_request_get_dynapi(struct afb_request *request) +{ + return request->dynapi; +} + +static inline void *afb_request_get_vcbdata(struct afb_request *request) +{ + return request->vcbdata; +} + +static inline const char *afb_request_get_api(struct afb_request *request) +{ + return request->api; +} + +static inline const char *afb_request_get_verb(struct afb_request *request) +{ + return request->verb; +} + /* * Gets from the request 'request' the argument of 'name'. * Returns a PLAIN structure of type 'struct afb_arg'. |