From fc19b7d7974f9c64dffc40e180464d595a9805cd Mon Sep 17 00:00:00 2001 From: José Bollo Date: Thu, 7 Apr 2016 00:05:11 +0200 Subject: improves file handling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I285cb6333d939a8afed07d8388d1d7850e50fe28 Signed-off-by: José Bollo --- include/afb-req-itf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/afb-req-itf.h') diff --git a/include/afb-req-itf.h b/include/afb-req-itf.h index 8d869a6f..9ced7630 100644 --- a/include/afb-req-itf.h +++ b/include/afb-req-itf.h @@ -20,8 +20,8 @@ struct json_object; struct afb_arg { const char *name; const char *value; + const char *path; size_t size; - int is_file; }; struct afb_req_itf { @@ -50,9 +50,9 @@ static inline const char *afb_req_argument(struct afb_req req, const char *name) return afb_req_get(req, name).value; } -static inline int afb_req_is_argument_file(struct afb_req req, const char *name) +static inline const char *afb_req_path(struct afb_req req, const char *name) { - return afb_req_get(req, name).is_file; + return afb_req_get(req, name).path; } static inline void afb_req_iterate(struct afb_req req, int (*iterator)(void *closure, struct afb_arg arg), void *closure) -- cgit 1.2.3-korg