libubus: move ubus_msghdr_data to libubus-internal.h

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
This commit is contained in:
Felix Fietkau 2014-07-03 20:58:01 +02:00
parent af63ab64af
commit 382a05f54d
2 changed files with 7 additions and 7 deletions

View file

@ -17,6 +17,13 @@
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,

View file

@ -39,13 +39,6 @@ struct ubus_msghdr_buf {
struct blob_attr *data;
};
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;
}
typedef void (*ubus_lookup_handler_t)(struct ubus_context *ctx,
struct ubus_object_data *obj,
void *priv);