aboutsummaryrefslogtreecommitdiff
path: root/tests/bus.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bus.c')
-rw-r--r--tests/bus.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/bus.c b/tests/bus.c
index d242a7dd..c38f8c5a 100644
--- a/tests/bus.c
+++ b/tests/bus.c
@@ -1,5 +1,6 @@
//
// Copyright 2017 Garrett D'Amore <garrett@damore.org>
+// Copyright 2017 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
@@ -56,14 +57,9 @@ TestMain("BUS pattern", {
So(nng_dial(bus3, addr, NULL, 0) == 0);
rtimeo = 50000;
- So(nng_setopt(
- bus1, NNG_OPT_RCVTIMEO, &rtimeo, sizeof(rtimeo)) == 0);
- rtimeo = 50000;
- So(nng_setopt(
- bus2, NNG_OPT_RCVTIMEO, &rtimeo, sizeof(rtimeo)) == 0);
- rtimeo = 50000;
- So(nng_setopt(
- bus3, NNG_OPT_RCVTIMEO, &rtimeo, sizeof(rtimeo)) == 0);
+ So(nng_setopt_usec(bus1, nng_optid_recvtimeo, rtimeo) == 0);
+ So(nng_setopt_usec(bus2, nng_optid_recvtimeo, rtimeo) == 0);
+ So(nng_setopt_usec(bus3, nng_optid_recvtimeo, rtimeo) == 0);
Convey("Messages delivered", {
nng_msg *msg;