logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

nng_stat_find - find statistic by 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.

Errors

       None.

Name

       nng_stat_find - find statistic by name

Return Values

       The matching statistic, or NULL if no match is found.

See Also

libnng(3), nng_stat_child(3), nng_stat_find_dialer(3), nng_stat_find_listner(3), nng_stat_find_socket(3),
       nng_stats_get(3), nng_stat(5), nng(7)

                                                   2025-04-20                                   NNG_STAT_FIND(3)

Synopsis

           #include <nng/nng.h>

           typedef struct nng_stat nng_stat;

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

See Also