X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=libubus-internal.h;h=f62edc388bd6e65d58100bce97778819bb5ce054;hp=072bf8effd7d3b98e9589f706fa9a58637a3917f;hb=f09d18878b09d7d6c1ca7ef7da51131f46ddb2c6;hpb=a69f062cbd4041229f8d29ef9647bf783df414c1 diff --git a/libubus-internal.h b/libubus-internal.h index 072bf8e..f62edc3 100644 --- a/libubus-internal.h +++ b/libubus-internal.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011-2012 Felix Fietkau + * Copyright (C) 2011-2014 Felix Fietkau * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 2.1 @@ -14,19 +14,19 @@ #ifndef __LIBUBUS_IO_H #define __LIBUBUS_IO_H -#define __hidden __attribute__((visibility ("hidden"))) - extern struct blob_buf b; +extern const struct ubus_method watch_method; 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, - struct blob_attr *msg, int cmd, uint32_t peer); -void ubus_process_msg(struct ubus_context *ctx, struct ubus_msghdr *hdr); -void ubus_process_invoke(struct ubus_context *ctx, struct ubus_msghdr *hdr); + struct blob_attr *msg, int cmd, uint32_t peer, int fd); +void ubus_process_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf, int fd); int __hidden ubus_start_request(struct ubus_context *ctx, struct ubus_request *req, struct blob_attr *msg, int cmd, uint32_t peer); -void ubus_process_unsubscribe(struct ubus_context *ctx, struct ubus_msghdr *hdr); -void ubus_process_notify(struct ubus_context *ctx, struct ubus_msghdr *hdr); +void ubus_process_obj_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf); +void ubus_process_req_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf, int fd); +void __hidden ubus_poll_data(struct ubus_context *ctx, int timeout); + #endif