diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-10-10 18:21:54 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-10-10 20:28:40 +0200 |
commit | 04241c8168fe8826b4fc7a80500577b50936b57a (patch) | |
tree | 145d56f7357b463dabe60c2126348b9126edfbb0 /include/afb/afb-req.h | |
parent | b55a56d550d4a62a63e175f87c89a0a6c55e691e (diff) |
Add the function afb_req_get_uid
Change-Id: I9caf38ee3811cf10b546489094f0bb5b3d844c40
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-req.h')
-rw-r--r-- | include/afb/afb-req.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/afb/afb-req.h b/include/afb/afb-req.h index 6f98e900..af33108c 100644 --- a/include/afb/afb-req.h +++ b/include/afb/afb-req.h @@ -420,3 +420,14 @@ static inline char *afb_req_get_application_id(struct afb_req req) return req.itf->get_application_id(req.closure); } +/* + * Get the user identifier (UID) of the client application for the + * request 'req'. + * + * Returns -1 when the application can not be identified. + */ +static inline int afb_req_get_uid(struct afb_req req) +{ + return req.itf->get_uid(req.closure); +} + |