#include <nng/nng.h>
void nng_stream_listener_free(nng_stream_listener *)l;
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.8.0. See the documentation for v1.8.0 for the most up-to-date information. |
nng_stream_listener_free(3str)
NAME
nng_stream_listener_free - free byte stream listener
SYNOPSIS
DESCRIPTION
The nng_stream_listener_free()
function closes the supplied
byte stream listener l,
and frees the underlying resources associated with it.
If any
accept operations using __l are
in progress, they will be terminated with an NNG_ECLOSED
error condition.
It is important that the application ensure that no further accesses are made to l, as the memory backing it will be reclaimed for other uses. |
RETURN VALUES
None.
ERRORS
None.