Download this file

BorderRouter.ned    47 lines (42 with data), 1.5 kB

//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
// 
// You should have received a copy of the GNU Lesser General Public License
// along with this program.  If not, see http://www.gnu.org/licenses/.
// 

package rina.CS;

import rina.DIF.IPCProcess;


module BorderRouter
{
    @display("i=abstract/router;bgb=272,341");
    @node;
    gates:
        inout medium[];
    submodules:
        ipcProcess1: IPCProcess {
            @display("p=66,160");
        }
        ipcProcess2: IPCProcess {
            @display("p=206,157");
        }
        ipcProcess3: IPCProcess {
            @display("p=206,266;i=,#FF4000");
        }
        ipcProcess0: IPCProcess {
            @display("p=139,39;i=,#FFB000");
        }
    connections:
        //ipcProcess0.southIo++ <--> ipcProcess1.northIo++;
        //ipcProcess0.southIo++ <--> ipcProcess2.northIo++;
        //ipcProcess2.southIo++ <--> ipcProcess3.northIo++;
        ipcProcess3.southIo++ <--> medium++;
        ipcProcess1.southIo++ <--> medium++;
}