diff options
| author | Garrett D'Amore <garrett@damore.org> | 2020-08-08 14:02:52 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2020-08-08 14:51:44 -0700 |
| commit | 79afcea91aa6882eede47b5cddc4f097454b6027 (patch) | |
| tree | d4b06132b193f56fb347bf88765293ccffe05641 /tests/ws.c | |
| parent | 0299f164c4a1f41e169c159e6cd1b382d3690ab0 (diff) | |
| download | nng-79afcea91aa6882eede47b5cddc4f097454b6027.tar.gz nng-79afcea91aa6882eede47b5cddc4f097454b6027.tar.bz2 nng-79afcea91aa6882eede47b5cddc4f097454b6027.zip | |
fixes #1279 Add support for ws4:// and ws6:// style websocket urls
fixes #1277 FreeBSD errors due to bad v4 vs. v6 assumptions
Diffstat (limited to 'tests/ws.c')
| -rw-r--r-- | tests/ws.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ // -// Copyright 2019 Staysail Systems, Inc. <info@staysail.tech> +// Copyright 2020 Staysail Systems, Inc. <info@staysail.tech> // Copyright 2018 Capitar IT Group BV <info@capitar.com> // // This software is supplied under the terms of the MIT License, a @@ -95,7 +95,7 @@ TestMain("WebSocket Transport", { nng_close(s2); nng_close(s1); }); - trantest_next_address(addr, "ws://:%u/test"); + trantest_next_address(addr, "ws4://:%u/test"); So(nng_listen(s1, addr, NULL, 0) == 0); nng_msleep(100); // reset port back one @@ -114,7 +114,7 @@ TestMain("WebSocket Transport", { nng_close(s2); nng_close(s1); }); - trantest_next_address(addr, "ws://*:%u/test"); + trantest_next_address(addr, "ws4://*:%u/test"); So(nng_listen(s1, addr, NULL, 0) == 0); nng_msleep(100); // reset port back one @@ -150,8 +150,8 @@ TestMain("WebSocket Transport", { nng_close(s1); nng_close(s2); }); - So(nng_listen(s1, "ws://*:5599/one", NULL, 0) == 0); - So(nng_listen(s1, "ws://*:5599/two", NULL, 0) == 0); + So(nng_listen(s1, "ws4://*:5599/one", NULL, 0) == 0); + So(nng_listen(s1, "ws4://*:5599/two", NULL, 0) == 0); So(nng_dial(s2, "ws://127.0.0.1:5599/one", NULL, 0) == 0); }); |
