aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-req-itf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/afb-req-itf.h')
-rw-r--r--src/afb-req-itf.h29
1 files changed, 18 insertions, 11 deletions
diff --git a/src/afb-req-itf.h b/src/afb-req-itf.h
index d747d0b8..ab72a5ce 100644
--- a/src/afb-req-itf.h
+++ b/src/afb-req-itf.h
@@ -15,11 +15,16 @@
* limitations under the License.
*/
+struct afb_arg {
+ const char *name;
+ const char *value;
+ size_t size;
+ int is_file;
+};
struct afb_req_itf {
- const char *(*argument)(void *data, const char *name);
- int (*is_argument_file)(void *data, const char *name);
- int (*iterate_arguments)(void *data, int (*iterator)(void *closure, const char *key, const char *value, int isfile), void *closure);
+ struct afb_arg (*get)(void *data, const char *name);
+ void (*iterate)(void *data, int (*iterator)(void *closure, struct afb_arg arg), void *closure);
};
struct afb_req {
@@ -27,21 +32,23 @@ struct afb_req {
void *data;
};
-static inline const char *afb_req_argument(struct afb_req req, const char *name)
+static inline struct afb_arg afb_req_get(struct afb_req req, const char *name)
{
- return req.itf->argument(req.data, name);
+ return req.itf->get(req.data, name);
}
-static inline int afb_req_argument_file(struct afb_req req, const char *name)
+static inline const char *afb_req_argument(struct afb_req req, const char *name)
{
- return req.itf->is_argument_file(req.data, name);
+ return afb_req_get(req, name).value;
}
-static inline int afb_req_iterate_arguments(struct afb_req req, int (*iterator)(void *closure, const char *key, const char *value, int isfile), void *closure)
+static inline int afb_req_is_argument_file(struct afb_req req, const char *name)
{
- return req.itf->iterate_arguments(req.data, iterator, closure);
+ return afb_req_get(req, name).is_file;
}
-
-
+static inline void afb_req_iterate(struct afb_req req, int (*iterator)(void *closure, struct afb_arg arg), void *closure)
+{
+ req.itf->iterate(req.data, iterator, closure);
+}