📄 paintswitch.cc
字号:
/* * paintswitch.{cc,hh} -- element routes packets to one output of several * Douglas S. J. De Couto. Based on Switch element by Eddie Kohler * * Copyright (c) 2002 MIT * * 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 "paintswitch.hh"#include <click/confparse.hh>#include <click/error.hh>#include <click/packet_anno.hh>CLICK_DECLSPaintSwitch::PaintSwitch(){ add_input();}PaintSwitch::~PaintSwitch(){}voidPaintSwitch::notify_noutputs(int n){ set_noutputs(n);}intPaintSwitch::configure(Vector<String> &, ErrorHandler *){ return 0;}voidPaintSwitch::configuration(Vector<String> &) const{}voidPaintSwitch::push(int, Packet *p){ int output_port = static_cast<int>(PAINT_ANNO(p)); if (output_port != 0xFF) checked_output_push(output_port, p); else { // duplicate to all output ports int n = noutputs(); for (int i = 0; i < n - 1; i++) if (Packet *q = p->clone()) output(i).push(q); output(n - 1).push(p); }}CLICK_ENDDECLSEXPORT_ELEMENT(PaintSwitch)ELEMENT_MT_SAFE(PaintSwitch)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -