aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-11-17 13:34:58 -0800
committerGarrett D'Amore <garrett@damore.org>2024-11-17 13:34:58 -0800
commitff66ec5f43547abc78b22ebcdfad32e2775bc9cb (patch)
treef92d0ad15cbb1ee8470226a436ef0403c9d49b2e /docs
parent48d0c0340f16b580443b3aba53c8bf618572fa6a (diff)
downloadnng-ff66ec5f43547abc78b22ebcdfad32e2775bc9cb.tar.gz
nng-ff66ec5f43547abc78b22ebcdfad32e2775bc9cb.tar.bz2
nng-ff66ec5f43547abc78b22ebcdfad32e2775bc9cb.zip
tcp/tls: Remove support for local interface address in dialer URLs
This was an undocumented capability provided for libnanomsg. The correct way to obtain the same functionality is to use `NNG_OPT_LOCADDR`.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/migrate/nanomsg.md7
-rw-r--r--docs/ref/migrate/nng1.md8
2 files changed, 15 insertions, 0 deletions
diff --git a/docs/ref/migrate/nanomsg.md b/docs/ref/migrate/nanomsg.md
index bb668121..66add9b2 100644
--- a/docs/ref/migrate/nanomsg.md
+++ b/docs/ref/migrate/nanomsg.md
@@ -121,4 +121,11 @@ There are some exceptions. Be aware that the numeric values are _not_ the same.
| `EMFILE` | [`NNG_ENOFILES`] |
| `ENOSPC` | [`NNG_ENOSPC`] |
+## Local Addresses for Dialing
+
+The ability to specify the source address in the UROL,to use when
+using `nn_dial` inside the URL is not present in NNG. The correct
+way to specify the local address is using the `NNG_OPT_LOCADDR` option on the
+dialer before starting to dial.
+
{{#include ../xref.md}}
diff --git a/docs/ref/migrate/nng1.md b/docs/ref/migrate/nng1.md
index 7bafb8f5..d3440fe4 100644
--- a/docs/ref/migrate/nng1.md
+++ b/docs/ref/migrate/nng1.md
@@ -60,6 +60,14 @@ Support for very old TLS versions 1.0 and 1.1 is removed.
Further, the `NNG_TLS_1_0` and `NNG_TLS_1_1` constants are also removed.
Applications should use `NNG_TLS_1_2` or even `NNG_TLS_1_3` instead.
+## Support for Local Addresses in Dial URLs Removed
+
+NNG 1.x had an undocumented ability to specify the local address to bind
+to when dialing, by using the local address in front of the destination
+address separated by a semicolon. This was provided for legacy libnanomsg
+compatilibility, and is no longer offered. The correct way to specify a
+local address is by setting `NNG_OPT_LOCADDR` on the dialer.
+
## Option Functions
The previously deprecated `nng_pipe_getopt_xxx` family of functions is removed.