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

📄 markipheader.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#ifndef CLICK_MARKIPHEADER_HH#define CLICK_MARKIPHEADER_HH#include <click/element.hh>CLICK_DECLS/* * =c * MarkIPHeader([OFFSET]) * =s IP, annotations * sets IP header annotation * =d * * Marks packets as IP packets by setting the IP Header annotation. The IP * header starts OFFSET bytes into the packet. Default OFFSET is 0. * * Does not check length fields for sanity, shorten packets to the IP length, * or set the destination IP address annotation. Use CheckIPHeader or * CheckIPHeader2 for that. * * =a CheckIPHeader, CheckIPHeader2, StripIPHeader */class MarkIPHeader : public Element {  int _offset;   public:    MarkIPHeader();  ~MarkIPHeader();    const char *class_name() const		{ return "MarkIPHeader"; }  int configure(Vector<String> &, ErrorHandler *);  Packet *simple_action(Packet *);  };CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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