📄 stationtable.cc
字号:
/* * stationtable.{cc,hh} -- track stations for an ap * John Bicket * * Copyright (c) 2003 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 <click/confparse.hh>#include <click/error.hh>#include <click/glue.hh>#include <click/straccum.hh>#include <clicknet/ether.h>#include "stationtable.hh"CLICK_DECLSStationTable::StationTable() : Element(0, 0){}StationTable::~StationTable(){}intStationTable::configure(Vector<String> &conf, ErrorHandler *errh){ int res; res = cp_va_parse(conf, this, errh, cpKeywords, cpEnd); return res;}void StationTable::take_state(Element *e, ErrorHandler *){ StationTable *q = (StationTable *)e->cast("StationTable"); if (!q) return; _table = q->_table;}enum {H_DEBUG};static String StationTable_read_param(Element *e, void *thunk){ StationTable *td = (StationTable *)e; switch ((uintptr_t) thunk) { case H_DEBUG: return String(td->_debug) + "\n"; default: return String(); }}static int StationTable_write_param(const String &in_s, Element *e, void *vparam, ErrorHandler *errh){ StationTable *f = (StationTable *)e; String s = cp_uncomment(in_s); switch((int)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;}voidStationTable::add_handlers(){ add_default_handlers(true); add_read_handler("debug", StationTable_read_param, (void *) H_DEBUG); add_write_handler("debug", StationTable_write_param, (void *) H_DEBUG);}// generate Vector template instance#include <click/bighashmap.cc>#if EXPLICIT_TEMPLATE_INSTANCEStemplate class HashMap<EtherAddress, Station>;#endifCLICK_ENDDECLSEXPORT_ELEMENT(StationTable)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -