X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=libubus.h;h=08dac49d2e74c2906e68897ca5b856ff5404df99;hp=a63ce31a7ca0d3b4a13473f4cce3a6702c884e32;hb=df0292c3af36441dce81b30ac4cd847326e27196;hpb=82da9db3a985a53c73a21e0fda92a4a59d176f71 diff --git a/libubus.h b/libubus.h index a63ce31..08dac49 100644 --- a/libubus.h +++ b/libubus.h @@ -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); @@ -216,10 +209,16 @@ struct ubus_auto_conn { }; struct ubus_context *ubus_connect(const char *path); +int ubus_connect_ctx(struct ubus_context *ctx, const char *path); void ubus_auto_connect(struct ubus_auto_conn *conn); int ubus_reconnect(struct ubus_context *ctx, const char *path); + +/* call this only for struct ubus_context pointers returned by ubus_connect() */ void ubus_free(struct ubus_context *ctx); +/* call this only for struct ubus_context pointers initialised by ubus_connect_ctx() */ +void ubus_shutdown(struct ubus_context *ctx); + const char *ubus_strerror(int error); static inline void ubus_add_uloop(struct ubus_context *ctx)