[Previous] [Contents] [Index] [Next]

CustNicStats_t

Custom name-value information for a nicinfo command

Synopsis:

struct _custnic_stats_entry 
{
    char        name[28];
    _uint32     value;
};

typedef struct _custnic_stats 
{
    _uint32     num_used;
    struct      _custnic_stats_entry entry[31];
} CustNicStats_t;

Description:

The CustNicStats_t structure is a "custom" interface for a nicinfo command. It's used to pass back arbitrary name-value pairs from drivers that don't fall into the predefined categories.

The members are:

num_used
The number of entries in the entry array that are used.
entry
An array of _custnic_stats_entry structures, each of which holds a name and a value.

Classification:

QNX

See also:

EthernetStats_t, GenStats_t, NetStats_t, Nic_t


[Previous] [Contents] [Index] [Next]