diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-10-26 10:54:58 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-10-27 07:13:40 -0700 |
| commit | be13c2e8845423cec17af429fc4e16a5d9749e47 (patch) | |
| tree | 82614e403a41aac6581a9a223ef9eba5be557222 /src/sp/pipe_test.c | |
| parent | 11c53f3d7f747d14fd69ce98c63d629bc821ef68 (diff) | |
| download | nng-be13c2e8845423cec17af429fc4e16a5d9749e47.tar.gz nng-be13c2e8845423cec17af429fc4e16a5d9749e47.tar.bz2 nng-be13c2e8845423cec17af429fc4e16a5d9749e47.zip | |
Replace nng_pipe_get_addr, nng_stream_get_addr, and the NNG_OPT_REMADDR option.
More direct access methods are provided instead.
This results in much lower friction when using, and is a step on the path
to removing NNG_OPT_LOCADDR as well.
We need to figure a solution for NNG_OPT_LOCADDR for dialers; for
listeners there is little use in it either, and it will be removed.
(Dialers will probably get a new NNG_OPT_BIND_IP option.)
Diffstat (limited to 'src/sp/pipe_test.c')
| -rw-r--r-- | src/sp/pipe_test.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/sp/pipe_test.c b/src/sp/pipe_test.c index 8f668d8c..532b6219 100644 --- a/src/sp/pipe_test.c +++ b/src/sp/pipe_test.c @@ -265,9 +265,22 @@ test_pipe_reject(void) fini_cases(&push, &pull); } +static void +test_pipe_invalid(void) +{ + nng_pipe p; + nng_sockaddr sa; + p.id = 45; // a random invalid pipe + + NUTS_FAIL(nng_pipe_peer_addr(p, &sa), NNG_ENOENT); + NUTS_FAIL(nng_pipe_self_addr(p, &sa), NNG_ENOENT); + NUTS_FAIL(nng_pipe_close(p), NNG_ENOENT); +} + NUTS_TESTS = { { "pipe msg id", test_pipe_msg_id }, { "pipe reconnect", test_pipe_reconnect }, { "pipe reject", test_pipe_reject }, + { "pipe invalid", test_pipe_invalid }, { NULL, NULL }, }; |
