summaryrefslogtreecommitdiffstats
path: root/include/afb/afb-req-itf.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-05-31 12:15:33 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-05-31 12:15:33 +0200
commit9ee5ae1883c58527f9cb63b7bafeb2f1d59e37ec (patch)
treef8101cc861b4835751b21a34338214a9f311f77d /include/afb/afb-req-itf.h
parent524ce4c40da3b25630dffdd80c5aca99364a3569 (diff)
code formatting improvement
Change-Id: I07e0201c4dc9996e47ca70819123b351c7fb2ad7 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-req-itf.h')
-rw-r--r--include/afb/afb-req-itf.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/afb/afb-req-itf.h b/include/afb/afb-req-itf.h
index 8c18a831..dcbbb8a7 100644
--- a/include/afb/afb-req-itf.h
+++ b/include/afb/afb-req-itf.h
@@ -27,7 +27,8 @@ struct json_object;
/*
* Describes an argument (or parameter) of a request
*/
-struct afb_arg {
+struct afb_arg
+{
const char *name; /* name of the argument or NULL if invalid */
const char *value; /* string representation of the value of the argument */
/* original filename of the argument if path != NULL */
@@ -41,7 +42,8 @@ struct afb_arg {
* Don't use this structure directly.
* Use the helper functions documented below.
*/
-struct afb_req_itf {
+struct afb_req_itf
+{
/* CAUTION: respect the order, add at the end */
struct json_object *(*json)(void *closure);
@@ -74,7 +76,8 @@ struct afb_req_itf {
/*
* Describes the request by bindings from afb-daemon
*/
-struct afb_req {
+struct afb_req
+{
const struct afb_req_itf *itf; /* the interface to use */
void *closure; /* the closure argument for functions of 'itf' */
};