X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=ubusd.c;fp=ubusd.c;h=a283f597a1c916e4d56aa38cecfc3c0e4554b781;hp=14eb537ca48fc504771276a3513c7ac36c1025e2;hb=1643f728e7c99362d1925d6085a376f18cf46b5e;hpb=c4c0a2256d959dec987ece74c05f77e5e418a84c diff --git a/ubusd.c b/ubusd.c index 14eb537..a283f59 100644 --- a/ubusd.c +++ b/ubusd.c @@ -12,7 +12,7 @@ #include "ubusd.h" -static struct avl_tree clients; +struct avl_tree clients; static struct ubus_msg_buf *ubus_msg_unshare(struct ubus_msg_buf *ub) { @@ -249,17 +249,6 @@ disconnect: handle_client_disconnect(cl); } -struct ubus_client *ubusd_get_client_by_id(uint32_t id) -{ - struct ubus_id *clid; - - clid = ubus_find_id(&clients, id); - if (!clid) - return NULL; - - return container_of(clid, struct ubus_client, id); -} - static bool get_next_connection(int fd) { struct ubus_client *cl;