diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-08-08 09:15:22 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-08-08 09:15:22 -0700 |
| commit | 83639701e0925dfbcd3b3c32ec8df20cb043e9dc (patch) | |
| tree | e89fc2b8acca84dfc758bd21fc7700eb936ca42b | |
| parent | 64a5ba9c39952a46b9d4c091dff0c0cfe1d22b75 (diff) | |
| download | nng-83639701e0925dfbcd3b3c32ec8df20cb043e9dc.tar.gz nng-83639701e0925dfbcd3b3c32ec8df20cb043e9dc.tar.bz2 nng-83639701e0925dfbcd3b3c32ec8df20cb043e9dc.zip | |
Use inproc to minimize timeouts on TCP (Windows).
| -rw-r--r-- | tests/compat_reqttl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/compat_reqttl.c b/tests/compat_reqttl.c index 47430485..3e6c2b00 100644 --- a/tests/compat_reqttl.c +++ b/tests/compat_reqttl.c @@ -57,8 +57,8 @@ int main (int argc, const char *argv[]) int port = get_test_port(argc, argv); - test_addr_from(socket_address_a, "tcp", "127.0.0.1", port); - test_addr_from(socket_address_b, "tcp", "127.0.0.1", port + 1); + test_addr_from(socket_address_a, "inproc", "127.0.0.1", port); + test_addr_from(socket_address_b, "inproc", "127.0.0.1", port + 1); /* Intialise the device sockets. */ dev0 = test_socket (AF_SP_RAW, NN_REP); |
