add validity functions
authorJosé Bollo <jose.bollo@iot.bzh>
Mon, 8 Aug 2016 11:57:21 +0000 (13:57 +0200)
committerJosé Bollo <jose.bollo@iot.bzh>
Mon, 8 Aug 2016 11:58:58 +0000 (13:58 +0200)
Change-Id: I56f4f6aebe673363c8b07c55f68ebbb1362b04fc
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
include/afb/afb-event-itf.h
include/afb/afb-req-itf.h

index e31f22c..5f7b837 100644 (file)
@@ -42,6 +42,16 @@ struct afb_event {
        void *closure;                          /* the closure argument for functions of 'itf' */
 };
 
+/*
+ * Checks wether the 'event' is valid or not.
+ *
+ * Returns 0 if not valid or 1 if valid.
+ */
+static inline int afb_event_is_valid(struct afb_event event)
+{
+       return event.itf != NULL;
+}
+
 /*
  * Broadcasts widely the 'event' with the data 'object'.
  * 'object' can be NULL.
index bc4b618..153887b 100644 (file)
@@ -82,6 +82,16 @@ struct afb_req {
        void *closure;                  /* the closure argument for functions of 'itf' */
 };
 
+/*
+ * Checks wether the request 'req' is valid or not.
+ *
+ * Returns 0 if not valid or 1 if valid.
+ */
+static inline int afb_req_is_valid(struct afb_req req)
+{
+       return req.itf != NULL;
+}
+
 /*
  * Gets from the request 'req' the argument of 'name'.
  * Returns a PLAIN structure of type 'struct afb_arg'.