libubus: mark ubus socket with close-on-exec
[oweals/ubus.git] / libubus-internal.h
index c50e7fd8d51fcdc3fa020753c83419e9d3f479f8..0eddf9e1b382a03fa0e36068009abc9ff8b110b0 100644 (file)
 extern struct blob_buf b;
 extern const struct ubus_method watch_method;
 
+static inline struct blob_attr *
+ubus_msghdr_data(struct ubus_msghdr *hdr)
+{
+       struct ubus_msghdr_buf *hdrbuf = container_of(hdr, struct ubus_msghdr_buf, hdr);
+       return hdrbuf->data;
+}
+
 struct blob_attr **ubus_parse_msg(struct blob_attr *msg);
 void ubus_handle_data(struct uloop_fd *u, unsigned int events);
 int ubus_send_msg(struct ubus_context *ctx, uint32_t seq,
@@ -26,6 +33,7 @@ int __hidden ubus_start_request(struct ubus_context *ctx, struct ubus_request *r
                                struct blob_attr *msg, int cmd, uint32_t peer);
 void ubus_process_obj_msg(struct ubus_context*ctx, struct ubus_msghdr *hdr);
 void ubus_process_req_msg(struct ubus_context *ctx, struct ubus_msghdr *hdr, int fd);
-void ubus_process_pending_msg(struct ubus_context *ctx);
+void __hidden ubus_poll_data(struct ubus_context *ctx, int timeout);
+
 
 #endif