⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rpc_stats.hh

📁 定向扩散路由协议
💻 HH
字号:
// *********************************************************// // rpc_stats.hh  : Collect statistics from the RPC radio// authors       : Chalermek Intanagonwiwat and Fabio Silva//// $Id: rpc_stats.hh,v 1.2 2002/03/21 06:58:26 fabio Exp $//// *********************************************************#ifndef rpc_stats_hh#define rpc_stats_hh#ifdef HAVE_CONFIG_H#include "config.h"#endif // HAVE_CONFIG_H#include "stdio.h"#include "stdlib.h"class RPCStats {public:  RPCStats(int id);  void printStats(FILE *output);private:  int node_id;  // Counters  int rpc_tx_bytes;  int rpc_rx_bytes;  int rpc_tx_frames;  int rpc_rx_frames;  // RPC Interface files  FILE *tx_bytes;  FILE *rx_bytes;  FILE *tx_frames;  FILE *rx_frames;  void readCounters();  void openFiles();  void closeFiles();};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -