#include <nng/nng.h>
typedef struct nng_stat nng_stat;
uint64_t nng_stat_value(nng_stat *stat);
This documentation is for version v1.3.2 of NNG, but the latest released version is v1.8.0. see the documentation for v1.8.0 for the most up-to-date information. |
nng_stat_value(3)
NAME
nng_stat_value - get statistic value
SYNOPSIS
DESCRIPTION
The nng_stat_value()
function returns a numeric value for the statistic stat.
If the statistic has a boolean value, then zero is returned for false
, and
one is returned for true
.
Otherwise, if the statistic is not of numeric type, then zero is returned.
See nng_stat_type()
for a description of statistic types.
RETURN VALUES
The numeric or boolean value associated with stat.
ERRORS
None.