doompanning/docs/man/nng_dialer_create.3.adoc
oxmox 7063e2102e Squashed 'external/nng/' content from commit 29b73962
git-subtree-dir: external/nng
git-subtree-split: 29b73962b939a6fbbf6ea8d5d7680bb06d0eeb99
2024-12-18 18:29:29 +01:00

80 lines
2.6 KiB
Text

= nng_dialer_create(3)
//
// Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
//
// This document is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
== NAME
nng_dialer_create - create dialer
== SYNOPSIS
[source, c]
----
#include <nng/nng.h>
int nng_dialer_create(nng_dialer *dialerp, nng_socket s, const char *url);
----
== DESCRIPTION
The `nng_dialer_create()` function creates a newly initialized
xref:nng_dialer.5.adoc[`nng_dialer`] object, associated with socket _s_,
and configured to connect to the
address specified by _url_, and stores a pointer to at the location
referenced by _dialerp_.
Dialers initiate a remote connection to a listener.
Upon a successful
connection being established, they create a pipe, add it to the socket,
and then wait for that pipe to be closed.
When the pipe is closed, they will re-initiate the connection.
Dialers will also periodically retry a connection automatically if
an attempt to connect asynchronously
fails.
TIP: While it is convenient to think of dialers as clients, the relationship
between the listener or dialer is orthogonal to any server or client status
that might be associated with a given protocol.
For example, a xref:nng_req.7.adoc[_req_]
socket might have associated dialers, but might also have associated listeners.
It may even have some of each at the same time!
The dialer is not started, but may be further configured with
the xref:nng_dialer_setopt.3.adoc[`nng_dialer_setopt()`] family of functions.
Once it is fully configured, the dialer may be started using the
xref:nng_dialer_start.3.adoc[`nng_dialer_start()`] function.
TIP: If no specific configuration is required, consider using the
simpler xref:nng_dial.3.adoc[`nng_dial()`] function instead.
== RETURN VALUES
This function returns 0 on success, and non-zero otherwise.
== ERRORS
[horizontal]
`NNG_EADDRINVAL`:: An invalid _url_ was specified.
`NNG_ECLOSED`:: The socket _s_ is not open.
`NNG_ENOMEM`:: Insufficient memory is available.
== SEE ALSO
[.text-left]
xref:nng_dial.3.adoc[nng_dial(3)],
xref:nng_dialer_close.3.adoc[nng_dialer_close(3)],
xref:nng_dialer_getopt.3.adoc[nng_dialer_getopt(3)],
xref:nng_dialer_setopt.3.adoc[nng_dialer_setopt(3)],
xref:nng_dialer_start.3.adoc[nng_dialer_start(3)],
xref:nng_listener_create.3.adoc[nng_listener_create(3)]
xref:nng_strerror.3.adoc[nng_strerror(3)],
xref:nng_dialer.5.adoc[nng_dialer(5)],
xref:nng.7.adoc[nng(7)]