libubus: move ubus_msghdr_data to libubus-internal.h
[project/ubus.git] / libubus-internal.h
index e4a5825..f6d850f 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, typeof(*hdrbuf), 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,