| Structure SilcClientStats
 
 NAME
 
    typedef struct { ... } SilcClientStats;
DESCRIPTION
    This structure holds SILC network statistics returned by the
    SILC_COMMAND_STATS command reply to the application.
SOURCE    typedef struct SilcClientStatsStruct {
      SilcUInt32 starttime;         /* SILC server start time */
      SilcUInt32 uptime;            /* SILC server uptime*/
      SilcUInt32 my_clients;        /* Number of clients in the server */
      SilcUInt32 my_channels;       /* Number of channel in the server */
      SilcUInt32 my_server_ops;     /* Number of server operators in the server */
      SilcUInt32 my_router_ops;     /* Number of router operators in the router */
      SilcUInt32 cell_clients;      /* Number of clients in the cell */
      SilcUInt32 cell_channels;     /* Number of channels in the cell */
      SilcUInt32 cell_servers;      /* Number of server in the cell */
      SilcUInt32 clients;           /* All clients in SILC network */
      SilcUInt32 channels;          /* All channels in SILC network */
      SilcUInt32 servers;           /* All servers in SILC network */
      SilcUInt32 routers;           /* All routers in SILC network */
      SilcUInt32 server_ops;        /* All server operators in SILC network */
      SilcUInt32 router_ops;        /* All router operators in SILC network */
    } SilcClientStats;
 
 
 
 |