logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

nng_stat_find_socket - find socket statistics

Description

       The nng_stat_find_socket() function returns the statistics tree within stat associated with the socket
       socket, if such a tree exists. Otherwise NULL is returned.

       Generally, there will be child statistics of the returned value, each corresponding to a specific metric.
       These can be further scanned using either nng_stat_find(3) or by walking the tree with nng_stat_child(3).

Errors

       None.

Name

       nng_stat_find_socket - find socket statistics

Return Values

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

See Also

libnng(3), nng_stat_child(3), nng_stat_find(3), nng_stat_find_dialer(3), nng_stat_find_listener(3),
       nng_stats_get(3), nng_stat(5), nng(7)

                                                   2025-04-20                            NNG_STAT_FIND_SOCKET(3)

Synopsis

           #include <nng/nng.h>

           typedef struct nng_stat nng_stat;
           typedef struct nng_socket nng_socket;

           nng_stat *nng_stat_find_socket(nng_stat *stat, nng_socket socket);

See Also