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

📄 regionpep.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#ifndef rgnpep_hh#define rgnpep_hh/* * =c * EstimateRouterRegion(IP, [fixed?, fix-lat, fix-lon]) * =s Grid * =d * Run the Region-based Grid Position Estimation Protocol. Subtypes * GridLocationInfo, and can be used in its place. * * =a PEP, GridLocationInfo */#include <click/element.hh>#include <click/timer.hh>#include <click/ipaddress.hh>#include "pep_proto.hh"#include "grid.hh"#include "elements/grid/gridlocationinfo.hh"#include "region.hh"CLICK_DECLSclass EstimateRouterRegion : public GridLocationInfo {  public:    EstimateRouterRegion();  ~EstimateRouterRegion();    const char *class_name() const		{ return "EstimateRouterRegion"; }  const char *processing() const		{ return PUSH; }    int configure(Vector<String> &, ErrorHandler *);  int initialize(ErrorHandler *);  virtual void *cast(const char *);  void run_timer();  void add_handlers();  Packet *simple_action(Packet *p);    grid_location get_current_location(void);  String s();  bool _debug;  private:    IPAddress _my_ip;  Timer _timer;  bool _fixed;  // We have a static, known location in _lat / _lon.  float _lat;  float _lon;  int _seq;  struct Entry {    struct timeval _when; // When we last updated this entry.    pep_rgn_fix _fix;  };  Vector<Entry> _entries; // hops stored and transmitted are hops to us  int findEntry(unsigned id, bool allocate);  RectRegion build_region();  void purge_old();  void sort_entries();  bool sendable(Entry);  void externalize(pep_rgn_fix *);  void internalize(pep_rgn_fix *);  Packet *make_PEP();  double radio_range(grid_location); };CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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