diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-07-02 12:44:42 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-07-02 12:44:42 -0700 |
| commit | a772bcc6ebe198f939889abbda18eded2a326941 (patch) | |
| tree | ab48eefaefdb242682fbe84c89a0557307242946 /tests/sock.c | |
| parent | 63418ae95eb9d61d2cffa56f7e8fbdb48aaaf703 (diff) | |
| download | nng-a772bcc6ebe198f939889abbda18eded2a326941.tar.gz nng-a772bcc6ebe198f939889abbda18eded2a326941.tar.bz2 nng-a772bcc6ebe198f939889abbda18eded2a326941.zip | |
fixes #564 Race regression caused by#522
fixes #565 Option getting should validate sizes more aggressively
fixes #563 Reconnect timeouts should be settable on dialers
fixes #562 pipe test is fragile
Diffstat (limited to 'tests/sock.c')
| -rw-r--r-- | tests/sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sock.c b/tests/sock.c index 3792090b..002ae944 100644 --- a/tests/sock.c +++ b/tests/sock.c @@ -387,7 +387,7 @@ TestMain("Socket Operations", { // Not appropriate for dialer. So(nng_dialer_setopt_bool( ep, NNG_OPT_RAW, true) == NNG_ENOTSUP); - So(nng_dialer_setopt_ms(ep, NNG_OPT_RECONNMINT, + So(nng_dialer_setopt_ms(ep, NNG_OPT_SENDTIMEO, 1) == NNG_ENOTSUP); So(nng_dialer_setopt_string(ep, NNG_OPT_SOCKNAME, |
