📄 wifiseq.cc
字号:
/* * wifiseq.{cc,hh} -- set the 802.11 sequence numbers * 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 "wifiseq.hh"#include <click/etheraddress.hh>#include <click/confparse.hh>#include <click/error.hh>#include <click/glue.hh>#include <clicknet/wifi.h>#include <clicknet/llc.h>#include <click/packet_anno.hh>#include <elements/wifi/wirelessinfo.hh>CLICK_DECLSWifiSeq::WifiSeq(){}WifiSeq::~WifiSeq(){}intWifiSeq::configure(Vector<String> &conf, ErrorHandler *errh){ _debug = false; _seq = 0; _offset = 22; _bytes = 2; _shift = 4; if (cp_va_kparse(conf, this, errh, "DEBUG", 0, cpBool, &_debug, "OFFSET", 0, cpUnsigned, &_offset, "BYTES", 0, cpUnsigned, &_bytes, "SHIFT", 0, cpUnsigned, &_shift, cpEnd) < 0) return -1; if (_bytes != 2 && _bytes != 4) { return errh->error("BYTES must be either 2 or 4"); } reset(); return 0;}voidWifiSeq::reset(){ _seq = 0;}Packet *WifiSeq::simple_action(Packet *p_in) { WritablePacket *p = p_in ? p_in->uniqueify() : 0; if (p && p->length() > _offset + _bytes) { struct click_wifi_extra *ceh = WIFI_EXTRA_ANNO(p_in); ceh->flags |= WIFI_EXTRA_NO_SEQ; char *data = (char *)(p->data() + _offset); if (_bytes == 2) { *(u_int16_t *)data = (cpu_to_le16(_seq << _shift)); } else { *(u_int32_t *)data = (cpu_to_le32(_seq << _shift)); } _seq++; } return p;}enum {H_DEBUG, H_SEQ, H_OFFSET, H_BYTES, H_SHIFT, H_RESET};StringWifiSeq::read_param(Element *e, void *thunk){ WifiSeq *td = (WifiSeq *)e; switch ((uintptr_t) thunk) { case H_DEBUG: return String(td->_debug) + "\n"; case H_SEQ: return String(td->_seq) + "\n"; case H_OFFSET: return String(td->_offset) + "\n"; case H_BYTES: return String(td->_bytes) + "\n"; case H_SHIFT: return String(td->_shift) + "\n"; default: return String(); }}intWifiSeq::write_param(const String &in_s, Element *e, void *vparam, ErrorHandler *errh){ WifiSeq *f = (WifiSeq *)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; } case H_SEQ: { //debug u_int32_t seq; if (!cp_unsigned(s, &seq)) return errh->error("seq parameter must be unsigned"); f->_seq = seq; break; } case H_RESET: f->reset(); break; } return 0;}voidWifiSeq::add_handlers(){ add_read_handler("debug", read_param, (void *) H_DEBUG); add_read_handler("seq", read_param, (void *) H_SEQ); add_read_handler("offset", read_param, (void *) H_OFFSET); add_read_handler("bytes", read_param, (void *) H_BYTES); add_read_handler("shift", read_param, (void *) H_SHIFT); add_write_handler("debug", write_param, (void *) H_DEBUG); add_write_handler("seq", write_param, (void *) H_SEQ); add_write_handler("reset", write_param, (void *) H_RESET, Handler::BUTTON);}CLICK_ENDDECLSEXPORT_ELEMENT(WifiSeq)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -