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

📄 fromsimdevice.hh

📁 COPE the first practical network coding scheme which is developped on click
💻 HH
字号:
#ifndef CLICK_FROMSIMDEVICE_HH#define CLICK_FROMSIMDEVICE_HH#include <click/element.hh>#include <click/simclick.h>CLICK_DECLS/***************************************************************************** *  Copyright 2002, Univerity of Colorado at Boulder.                        * *                                                                           * *                        All Rights Reserved                                * *                                                                           * *  Permission to use, copy, modify, and distribute this software and its    * *  documentation for any purpose other than its incorporation into a        * *  commercial product is hereby granted without fee, provided that the      * *  above copyright notice appear in all copies and that both that           * *  copyright notice and this permission notice appear in supporting         * *  documentation, and that the name of the University not be used in        * *  advertising or publicity pertaining to distribution of the software      * *  without specific, written prior permission.                              * *                                                                           * *  UNIVERSITY OF COLORADO DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS      * *  SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND        * *  FITNESS FOR ANY PARTICULAR PURPOSE.  IN NO EVENT SHALL THE UNIVERSITY    * *  OF COLORADO BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL         * *  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA       * *  OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER        * *  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR         * *  PERFORMANCE OF THIS SOFTWARE.                                            * *                                                                           * ****************************************************************************//* * =title FromSimDevice.u * =c * FromSimDevice(DEVNAME [, PROMISC? [, MAXPACKETSIZE]]) * =s devices * reads packets from a simulator device * =d * * This manual page describes the user-level version of the FromSimDevice * element. * * =e *   FromSimDevice(eth0, 0) -> ... * * =a ToSimDevice.u, FromDump, ToDump, FromDevice(n) */class FromSimDevice : public Element {  String _ifname;  int _packetbuf_size;  int _fd;  unsigned char *_packetbuf;  static void set_annotations(Packet *,int ptype);  // set appropriate annotations, i.e. MAC packet type.  // modifies the packet. public:  FromSimDevice();  ~FromSimDevice();    const char *class_name() const	{ return "FromSimDevice"; }  const char *processing() const	{ return PUSH; }    int configure_phase() const		{ return CONFIGURE_PHASE_DEFAULT; }  int configure(Vector<String> &, ErrorHandler *);  int initialize(ErrorHandler *);  void uninitialize();    String ifname() const			{ return _ifname; }  int fd() const			{ return _fd; }  int incoming_packet(int ifid,int ptype,const unsigned char* data,int len,		      simclick_simpacketinfo* pinfo);};CLICK_ENDDECLS#endif

⌨️ 快捷键说明

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