aboutsummaryrefslogtreecommitdiff
path: root/docs/man
diff options
context:
space:
mode:
Diffstat (limited to 'docs/man')
-rw-r--r--docs/man/nng_dialer_set.3.adoc12
-rw-r--r--docs/man/nng_listener_set.3.adoc12
-rw-r--r--docs/man/nng_stream_dialer_set.3str.adoc13
-rw-r--r--docs/man/nng_stream_listener_set.3str.adoc13
4 files changed, 0 insertions, 50 deletions
diff --git a/docs/man/nng_dialer_set.3.adoc b/docs/man/nng_dialer_set.3.adoc
index 82673959..efad700c 100644
--- a/docs/man/nng_dialer_set.3.adoc
+++ b/docs/man/nng_dialer_set.3.adoc
@@ -25,8 +25,6 @@ int nng_dialer_set_int(nng_dialer d, const char *opt, int ival);
int nng_dialer_set_ms(nng_dialer d, const char *opt, nng_duration dur);
-int nng_dialer_set_ptr(nng_dialer d, const char *opt, void *ptr);
-
int nng_dialer_set_size(nng_dialer d, const char *opt, size_t z);
int nng_dialer_set_string(nng_dialer d, const char *opt, const char *str);
@@ -67,16 +65,6 @@ This function is used to configure time durations (such as timeouts) using
type xref:nng_duration.5.adoc[`nng_duration`].
The duration _dur_ is an integer number of milliseconds.
-`nng_dialer_set_ptr()`::
-This function is used to pass a pointer, _ptr_, to structured data.
-The data referenced by _ptr_ is generally managed by other functions.
-For example, TLS configuration objects created with
-(xref:nng_tls_config_alloc.3tls.adoc[`nng_tls_config_alloc()`])
-can be passed this way.
-
-NOTE: This form is somewhat special in that the object is generally
-not copied, but instead the *pointer* to the object is copied.
-
`nng_dialer_set_size()`::
This function is used to configure a size, _z_, typically for buffer sizes,
message maximum sizes, and similar options.
diff --git a/docs/man/nng_listener_set.3.adoc b/docs/man/nng_listener_set.3.adoc
index 37c9b48e..f245fe60 100644
--- a/docs/man/nng_listener_set.3.adoc
+++ b/docs/man/nng_listener_set.3.adoc
@@ -25,8 +25,6 @@ int nng_listener_set_int(nng_listener l, const char *opt, int ival);
int nng_listener_set_ms(nng_listener l, const char *opt, nng_duration dur);
-int nng_listener_set_ptr(nng_listener l, const char *opt, void *ptr);
-
int nng_listener_set_size(nng_listener l, const char *opt, size_t z);
int nng_listener_set_string(nng_listener l, const char *opt, const char *str);
@@ -68,16 +66,6 @@ This function is used to configure time durations (such as timeouts) using
type xref:nng_duration.5.adoc[`nng_duration`].
The duration _dur_ is an integer number of milliseconds.
-`nng_listener_set_ptr()`::
-This function is used to pass a pointer, _ptr_, to structured data.
-The data referenced by _ptr_ is generally managed by other functions.
-For example, TLS configuration objects created with
-(xref:nng_tls_config_alloc.3tls.adoc[`nng_tls_config_alloc()`])
-can be passed this way.
-
-NOTE: This form is somewhat special in that the object is generally
-not copied, but instead the *pointer* to the object is copied.
-
`nng_listener_set_size()`::
This function is used to configure a size, _z_, typically for buffer sizes,
message maximum sizes, and similar options.
diff --git a/docs/man/nng_stream_dialer_set.3str.adoc b/docs/man/nng_stream_dialer_set.3str.adoc
index 6a610500..2c75c9d9 100644
--- a/docs/man/nng_stream_dialer_set.3str.adoc
+++ b/docs/man/nng_stream_dialer_set.3str.adoc
@@ -26,8 +26,6 @@ int nng_stream_dialer_set_int(nng_stream_dialer *d, const char *opt, int val);
int nng_stream_dialer_set_ms(nng_stream_dialer *d, const char *opt, nng_duration val);
-int nng_stream_dialer_set_ptr(nng_stream_dialer *d, const char *opt, void *val);
-
int nng_stream_dialer_set_size(nng_stream_dialer *d, const char *opt, size_t val);
int nng_stream_dialer_set_string(nng_stream_dialer *d, const char *opt, const char *val);
@@ -67,17 +65,6 @@ the type
xref:nng_duration.5.adoc[`nng_duration`].
The duration is an integer number of milliseconds.
-`nng_stream_dialer_set_ptr()`::
-This function is used to pass a pointer to structured data.
-The data referenced by is generally managed by other functions.
-For example, TLS configuration objects created with
-xref:nng_tls_config_alloc.3tls.adoc[`nng_tls_config_alloc()`]
-can be passed this way.
-+
-NOTE: This form is somewhat special in that the object is generally
-not copied, but instead the *pointer* to the object is copied.
-Please see the documentation for the specific option for further details.
-
`nng_stream_dialer_set_size()`::
This function is used to configure a size, typically for buffer sizes,
message maximum sizes, and similar options.
diff --git a/docs/man/nng_stream_listener_set.3str.adoc b/docs/man/nng_stream_listener_set.3str.adoc
index 08a852bf..a623eef3 100644
--- a/docs/man/nng_stream_listener_set.3str.adoc
+++ b/docs/man/nng_stream_listener_set.3str.adoc
@@ -26,8 +26,6 @@ int nng_stream_listener_set_int(nng_stream_listener *l, const char *opt, int val
int nng_stream_listener_set_ms(nng_stream_listener *l, const char *opt, nng_duration val);
-int nng_stream_listener_set_ptr(nng_stream_listener *l, const char *opt, void *val);
-
int nng_stream_listener_set_size(nng_stream_listener *l, const char *opt, size_t val);
int nng_stream_listener_set_string(nng_stream_listener *l, const char *opt, const char *val);
@@ -67,17 +65,6 @@ the type
xref:nng_duration.5.adoc[`nng_duration`].
The duration is an integer number of milliseconds.
-`nng_stream_listener_set_ptr()`::
-This function is used to pass a pointer to structured data.
-The data referenced by is generally managed by other functions.
-For example, TLS configuration objects created with
-xref:nng_tls_config_alloc.3tls.adoc[`nng_tls_config_alloc()`]
-can be passed this way.
-+
-NOTE: This form is somewhat special in that the object is generally
-not copied, but instead the *pointer* to the object is copied.
-Please see the documentation for the specific option for further details.
-
`nng_stream_listener_set_size()`::
This function is used to configure a size, typically for buffer sizes,
message maximum sizes, and similar options.