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

📄 forceudp.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#ifndef CLICK_FORCEUDP_HH#define CLICK_FORCEUDP_HH#include <click/element.hh>#include <click/glue.hh>CLICK_DECLS/* * =c * ForceUDP([DPORT]) * =s UDP * sets UDP packet fields * =d * Set the checksum and some other fields to try to make a * packet look like UDP. If DPORT is specified and not -1, forces * the destination port to be DPORT. */class ForceUDP : public Element {public:  ForceUDP();  ~ForceUDP();    const char *class_name() const		{ return "ForceUDP"; }  const char *processing() const		{ return AGNOSTIC; }  int configure(Vector<String> &conf, ErrorHandler *errh);  Packet *simple_action(Packet *);private:  int _count;  int _dport;};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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