summaryrefslogtreecommitdiff
path: root/libubus.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-02-11 02:40:39 +0100
committerFelix Fietkau <nbd@openwrt.org>2011-02-11 02:40:39 +0100
commitf2ee96c51d38363092415cc333f8f7a62f16783a (patch)
tree7e2fc636ff820cc28f71b443cf71da3d1291b58c /libubus.h
parentfb45e383c2985c43a9aaf42050fef039473745ce (diff)
downloadubus-f2ee96c51d38363092415cc333f8f7a62f16783a.tar.gz
add support for timeouts on synchronous requests
Diffstat (limited to 'libubus.h')
-rw-r--r--libubus.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/libubus.h b/libubus.h
index 9e78ad4..8b5085a 100644
--- a/libubus.h
+++ b/libubus.h
@@ -154,7 +154,8 @@ static inline void ubus_handle_event(struct ubus_context *ctx)
/* ----------- raw request handling ----------- */
/* wait for a request to complete and return its status */
-int ubus_complete_request(struct ubus_context *ctx, struct ubus_request *req);
+int ubus_complete_request(struct ubus_context *ctx, struct ubus_request *req,
+ int timeout);
/* complete a request asynchronously */
void ubus_complete_request_async(struct ubus_context *ctx,
@@ -180,11 +181,12 @@ int ubus_remove_object(struct ubus_context *ctx, struct ubus_object *obj);
/* invoke a method on a specific object */
int ubus_invoke(struct ubus_context *ctx, uint32_t obj, const char *method,
- struct blob_attr *msg, ubus_data_handler_t cb, void *priv);
+ struct blob_attr *msg, ubus_data_handler_t cb, void *priv,
+ int timeout);
/* asynchronous version of ubus_invoke() */
int ubus_invoke_async(struct ubus_context *ctx, uint32_t obj, const char *method,
- struct blob_attr *msg, struct ubus_request *req);
+ struct blob_attr *msg, struct ubus_request *req);
/* send a reply to an incoming object method call */
int ubus_send_reply(struct ubus_context *ctx, struct ubus_request_data *req,