Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.27 KB

nng_stat_find.3.adoc

File metadata and controls

51 lines (35 loc) · 1.27 KB

nng_stat_find(3)

NAME

nng_stat_find - find statistic by name

SYNOPSIS

#include <nng/nng.h>

typedef struct nng_stat nng_stat;

nng_stat *nng_stat_find(nng_stat *stat, const char *name);

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.

Note
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.