This documentation is for the TIP (development tree) of NNG and may represent unreleased changes or functionality that is experimental, and is subject to change before release. The latest released version is v1.7.3. See the documentation for v1.7.3 for the most up-to-date information.

nng_dialer_close(3)

NAME

nng_dialer_close - close dialer

SYNOPSIS

#include <nng/nng.h>

int nng_dialer_close(nng_dialer d);

DESCRIPTION

The nng_dialer_close() function closes the dialer d. This also closes any nng_pipe objects that have been created by the dialer.

Once this function returns, the dialer d and any of its resources are deallocated. Therefore it is an error to attempt to access d after this function has returned. (Attempts to do so will result in NNG_ECLOSED errors.)

Dialers are implicitly closed when the socket they are associated with is closed.

RETURN VALUES

This function returns 0 on success, and non-zero otherwise.

ERRORS

NNG_ECLOSED

Parameter d does not refer to an open dialer.

SEE ALSO