X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=examples%2Fclient.c;h=32ff9d3a174ec0dc1d774faa947cdcdc114f3fa2;hp=75c61a4255eb3372aca0fa93623e1f4ba959cc82;hb=bb856ad8a9a1e786494d01e34bbfe2b4d2134021;hpb=3642af8097bf546fc7ce476a730e1187a35a3942 diff --git a/examples/client.c b/examples/client.c index 75c61a4..32ff9d3 100644 --- a/examples/client.c +++ b/examples/client.c @@ -11,6 +11,7 @@ * GNU General Public License for more details. */ +#include #include #include "libubus.h" @@ -31,14 +32,24 @@ static void test_client_notify_cb(struct uloop_timeout *timeout) { static int counter = 0; int err; + struct timeval tv1, tv2; + int max = 1000; + long delta; + int i = 0; blob_buf_init(&b, 0); blobmsg_add_u32(&b, "counter", counter++); - err = ubus_notify(ctx, &test_client_object, "ping", b.head, 1000); + gettimeofday(&tv1, NULL); + for (i = 0; i < max; i++) + err = ubus_notify(ctx, &test_client_object, "ping", b.head, 1000); + gettimeofday(&tv2, NULL); if (err) fprintf(stderr, "Notify failed: %s\n", ubus_strerror(err)); + delta = (tv2.tv_sec - tv1.tv_sec) * 1000000 + (tv2.tv_usec - tv1.tv_usec); + fprintf(stderr, "Avg time per iteration: %ld usec\n", delta / max); + uloop_timeout_set(timeout, 1000); }