summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-01-01 11:23:26 -0800
committerGarrett D'Amore <garrett@damore.org>2024-01-01 11:23:26 -0800
commit07ad78c04594ffce668892bea7b8f0f7e0ecccd2 (patch)
tree711f0b9a60f212a5e0644d686ea523db48519385
parentceaedf5c5d5d5a927bed6253a9e1f0c0cbc89e8a (diff)
downloadnng-07ad78c04594ffce668892bea7b8f0f7e0ecccd2.tar.gz
nng-07ad78c04594ffce668892bea7b8f0f7e0ecccd2.tar.bz2
nng-07ad78c04594ffce668892bea7b8f0f7e0ecccd2.zip
Update references to legacy APIs.
-rw-r--r--docs/man/nng_options.5.adoc16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/man/nng_options.5.adoc b/docs/man/nng_options.5.adoc
index dd971f9f..94da37a0 100644
--- a/docs/man/nng_options.5.adoc
+++ b/docs/man/nng_options.5.adoc
@@ -1,6 +1,6 @@
= nng_options(5)
//
-// Copyright 2023 Staysail Systems, Inc. <info@staysail.tech>
+// Copyright 2024 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
// Copyright 2019 Devolutions <info@devolutions.net>
//
@@ -51,21 +51,21 @@ This page documents the various standard options that can be set or
retrieved on objects.
Sockets (xref:nng_socket.5.adoc[`nng_socket`] objects) use the functions
-xref:nng_getopt.3.adoc[`nng_getopt()`]
-and xref:nng_setopt.3.adoc[`nng_setopt()`] to set and retrieve option values.
+xref:nng_socket_get.3.adoc[`nng_socket_get()`]
+and xref:nng_socket_set.3.adoc[`nng_socket_set()`] to set and retrieve option values.
Dialers (xref:nng_dialer.5.adoc[`nng_dialer`] objects) use the functions
-xref:nng_dialer_getopt.3.adoc[`nng_dialer_getopt()`] and
-xref:nng_dialer_setopt.3.adoc[`nng_dialer_setopt()`] to set and retrieve option
+xref:nng_dialer_get.3.adoc[`nng_dialer_get()`] and
+xref:nng_dialer_set.3.adoc[`nng_dialer_set()`] to set and retrieve option
values.
Listeners (xref:nng_listener.5.adoc[`nng_listener`] objects) use the functions
-xref:nng_listener_getopt.3.adoc[`nng_listener_getopt()`]
-and xref:nng_listener_setopt.3.adoc[`nng_listener_setopt()`] to set and
+xref:nng_listener_get.3.adoc[`nng_listener_get()`]
+and xref:nng_listener_set.3.adoc[`nng_listener_set()`] to set and
retrieve option values.
Pipes (xref:nng_pipe.5.adoc[`nng_pipe`] objects) can only retrieve option values using
-the xref:nng_pipe_getopt.3.adoc[`nng_pipe_getopt()`] function.
+the xref:nng_pipe_get.3.adoc[`nng_pipe_get()`] function.
Other object types may have additional methods to access these options.