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

📄 radiosim.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#ifndef RADIOSIM_HH#define RADIOSIM_HH/* * =c * RadioSim([keywords,] [lat1 lon1, lat2 lon2, ...]) * =s Grid * simulates reachability and broadcast in an 802.11-like radio network * =d * RadioSim simulates reachability and broadcast in an 802.11-like * radio network. * * Each corresponding input/output pair corresponds to one node. * Each node has a latitude/longitude, given by the <i>th * configuration argument. * * When node <i> sends a packet into RadioSim's input <i>, * RadioSim sends a copy to each output whose node is * within 250 meters of node <i>. * * Inputs are pull, outputs are push. Services inputs in round * robin order. * * Keyword: * * =over 8 *  * =item USE_XY * * Boolean.  Defaults to false.  Use x,y coordinates in metres instead * of lat,lon in degrees.  lat is treated as x, and lon is treated as * y. * * =back * * The loc read/write handler format is *   node-index latitude longitude */#include <click/element.hh>#include <click/vector.hh>#include "grid.hh"#include <click/task.hh>CLICK_DECLSclass RadioSim : public Element {   public:    RadioSim();  ~RadioSim();    const char *class_name() const		{ return "RadioSim"; }  const char *processing() const		{ return PULL_TO_PUSH; }  void notify_noutputs(int);  void notify_ninputs(int);  int configure(Vector<String> &, ErrorHandler *);  int initialize(ErrorHandler *errh);  void add_handlers();  bool run_task();private:  struct Node {    double _lat;    double _lon;    Node(double la, double lo) : _lat(la), _lon(lo) { }    Node() : _lat(0), _lon(0) { }  };  Node get_node_loc(int i);  void set_node_loc(int i, double lat, double lon);  int nnodes() { return(_nodes.size()); }  static int rs_write_handler(const String &, Element *, void *, ErrorHandler *);  static String rs_read_handler(Element *, void *);  Vector<Node> _nodes;  Task _task;    bool _use_xy;};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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