#include <nng/nng.h>
typedef struct nng_stat nng_stat;
nng_stat *nng_stat_find(nng_stat *stat, const char *name);
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_stat_find(3)
NAME
nng_stat_find - find statistic by name
SYNOPSIS
DESCRIPTION
The nng_stat_find()
function searches the statistics tree stat, looking for a statistic whose name is name.
If it finds one, it returns it.
Otherwise NULL
is returned.
If multiple statistics have that name, then only the first match is returned. |
RETURN VALUES
The matching statistic, or NULL if no match is found.
ERRORS
None.