Child:
[65cd22]
(diff)
Download this file
DIFAllocator.ned
49 lines (46 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.DAF.DA;
module DIFAllocator
{
parameters:
@display("i=misc/node,green;bgb=487,206");
xml configData = default(xml("<DA />"));
submodules:
namingInformation: NamingInformation {
parameters:
@display("p=80,143");
configData = configData;
}
neighborTable: NeighborTable {
parameters:
@display("p=403,143");
configData = configData;
}
directory: Directory {
parameters:
@display("p=193,143");
configData = configData;
}
searchTable: SearchTable {
parameters:
@display("p=300,143");
configData = configData;
}
da: DA {
parameters:
@display("p=247,52");
}
}