ObjectCacheTest.ned 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // Copyright (C) 2014 OpenSim Ltd.
  3. //
  4. // This program is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with this program. If not, see http://www.gnu.org/licenses/.
  16. //
  17. package inet.examples.objectcache;
  18. import inet.environment.common.PhysicalEnvironment;
  19. import inet.networklayer.configurator.ipv4.IPv4NetworkConfigurator;
  20. import inet.node.inet.AdhocHost;
  21. import inet.physicallayer.ieee80211.packetlevel.Ieee80211ScalarRadioMedium;
  22. network ObjectCacheTest
  23. {
  24. parameters:
  25. int numHosts;
  26. @display("bgb=2000,2000");
  27. submodules:
  28. physicalEnvironment: PhysicalEnvironment {
  29. parameters:
  30. @display("p=50,50");
  31. }
  32. radioMedium: Ieee80211ScalarRadioMedium {
  33. parameters:
  34. @display("p=50,150");
  35. }
  36. configurator: IPv4NetworkConfigurator {
  37. parameters:
  38. config = xml("<config><interface hosts='*' address='192.168.x.x' netmask='255.255.0.0'/></config>");
  39. @display("p=50,250");
  40. }
  41. host[numHosts]: AdhocHost {
  42. parameters:
  43. @display("r=,,#707070;p=250,58");
  44. }
  45. }