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

📄 nic80211.ned

📁 基于omnet++开发的Mf框架下的802.11协议仿真。
💻 NED
字号:
//***************************************************************************// * file:        Nic80211.ned// *// * author:      Marc Loebbers// *// * copyright:   (C) 2004 Telecommunication Networks Group (TKN) at// *              Technische Universitaet Berlin, Germany.// *// *              This program is free software; you can redistribute it // *              and/or modify it under the terms of the GNU General Public // *              License as published by the Free Software Foundation; either// *              version 2 of the License, or (at your option) any later // *              version.// *              For further information see file COPYING // *              in the top level directory// ***************************************************************************// * part of:     framework implementation developed by tkn// * description: a nic for the 802.11 protocol// *              // ***************************************************************************// * changelog:   $Revision$// *              last modified:   $Date: 2004-06-10 18:48:05 +0200 (Thu, 10 Jun 2004) $// *              by:              $Author: omfw-willkomm $// **************************************************************************/import 	"Mac80211",	"Decider80211",	"SnrEval80211";// This nic implements an 802.11 network interface card.//// @sa Mac80211, Decider80211, SnrEval80211//// @author Marc Loebbersmodule Nic80211    gates:         in: uppergateIn; // to upper layers        out: uppergateOut; // from upper layers     submodules:	mac: Mac80211;            display: "p=60,50;b=32,30;i=prot2";        decider: Decider80211;             display: "p=68,100;b=16,16;i=box2_s;o=white";        snrEval: SnrEval80211;             display: "p=60,150;b=32,30;i=prot3";    connections:         decider.uppergateOut --> mac.lowergateIn display "m=m,50,50,75,0";         snrEval.uppergateIn <-- mac.lowergateOut display "m=m,25,0,25,0";         snrEval.uppergateOut --> decider.lowergateIn display "m=m,73,0,50,50";                                                                                        mac.uppergateOut --> uppergateOut;         mac.uppergateIn <-- uppergateIn;                                              display: "p=10,10;b=101,180,rect;o=white";endmodule 

⌨️ 快捷键说明

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