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

📄 radiotapencap.cc

📁 Click is a modular router toolkit. To use it you ll need to know how to compile and install the sof
💻 CC
字号:
/* * radiotapencap.{cc,hh} -- encapsultates 802.11 packets * John Bicket * * Copyright (c) 2004 Massachusetts Institute of Technology * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, subject to the conditions * listed in the Click LICENSE file. These conditions include: you must * preserve this copyright notice, and you cannot mention the copyright * holders in advertising related to the Software without their permission. * The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This * notice is a summary of the Click LICENSE file; the license in that file is * legally binding. */#include <click/config.h>#include "radiotapencap.hh"#include <click/etheraddress.hh>#include <click/confparse.hh>#include <click/error.hh>#include <click/glue.hh>#include <clicknet/wifi.h>#include <click/packet_anno.hh>#include <clicknet/llc.h>#include <clicknet/radiotap.h>CLICK_DECLS#define CLICK_RADIOTAP_PRESENT (		\	(1 << IEEE80211_RADIOTAP_RATE)		| \	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \	(1 << IEEE80211_RADIOTAP_RTS_RETRIES)	| \	(1 << IEEE80211_RADIOTAP_DATA_RETRIES)	| \	0)struct click_radiotap_header {	struct ieee80211_radiotap_header wt_ihdr;	u_int8_t	wt_rate;	u_int8_t	wt_txpower;	u_int8_t        wt_rts_retries;	u_int8_t        wt_data_retries;};RadiotapEncap::RadiotapEncap(){}RadiotapEncap::~RadiotapEncap(){}intRadiotapEncap::configure(Vector<String> &conf, ErrorHandler *errh){  _debug = false;  if (cp_va_kparse(conf, this, errh,		   "DEBUG", 0, cpBool, &_debug,		   cpEnd) < 0)    return -1;  return 0;}Packet *RadiotapEncap::simple_action(Packet *p){  WritablePacket *p_out = p->uniqueify();  if (!p_out) {    p->kill();    return 0;  }  p_out = p_out->push(sizeof(struct click_radiotap_header));  if (p_out) {	  struct click_radiotap_header *crh  = (struct click_radiotap_header *) p_out->data();	  click_wifi_extra *ceh = WIFI_EXTRA_ANNO(p);	  memset(crh, 0, sizeof(struct click_radiotap_header));	  crh->wt_ihdr.it_version = 0;	  crh->wt_ihdr.it_len = sizeof(struct click_radiotap_header);	  crh->wt_ihdr.it_present = CLICK_RADIOTAP_PRESENT;	  crh->wt_rate = ceh->rate;	  crh->wt_txpower = ceh->power;	  crh->wt_rts_retries = 0;	  if (ceh->max_tries > 0) {		  crh->wt_data_retries = ceh->max_tries - 1;	  }  }  return p_out;}enum {H_DEBUG};static StringRadiotapEncap_read_param(Element *e, void *thunk){  RadiotapEncap *td = (RadiotapEncap *)e;    switch ((uintptr_t) thunk) {      case H_DEBUG:	return String(td->_debug) + "\n";    default:      return String();    }}static intRadiotapEncap_write_param(const String &in_s, Element *e, void *vparam,		      ErrorHandler *errh){  RadiotapEncap *f = (RadiotapEncap *)e;  String s = cp_uncomment(in_s);  switch((intptr_t)vparam) {  case H_DEBUG: {    //debug    bool debug;    if (!cp_bool(s, &debug))      return errh->error("debug parameter must be boolean");    f->_debug = debug;    break;  }  }  return 0;}voidRadiotapEncap::add_handlers(){  add_read_handler("debug", RadiotapEncap_read_param, (void *) H_DEBUG);  add_write_handler("debug", RadiotapEncap_write_param, (void *) H_DEBUG);}CLICK_ENDDECLSEXPORT_ELEMENT(RadiotapEncap)

⌨️ 快捷键说明

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