close
Warning:
BrowserModule failed with ConfigurationError: Look in the Trac log for more information.
- Timestamp:
-
Apr 28, 2009, 1:50:53 PM (16 years ago)
- Author:
-
heep
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v21
|
v22
|
|
550 | 550 | {{{ |
551 | 551 | #!cpp |
552 | | SimpleOverlay.overlayTerminal[5].overlay.myOverlay.enableDrops = true |
553 | | }}} |
554 | | |
555 | | In this example, we are working with the network SimpleOverlay. From there, we retrieve the overlayTerminal array, get index 5, and then its overlay module. For that module, we'll use the submodule myOverlay, and set the parameter enableDrops to true. |
556 | | |
557 | | This case, however, is too specific. We may not always work with the SimpleOverlay network. Or we may need that parameter to be set for all nodes. For those cases the wildcards * and ** are of use. For example: |
| 552 | SimpleUnderlayNetwork.overlayTerminal[5].overlay.myOverlay.enableDrops = true |
| 553 | }}} |
| 554 | |
| 555 | In this example, we are working with the network "SimpleUnderlayNetwork". From there, we retrieve the overlayTerminal array, get index 5, and then its overlay module. For that module, we'll use the submodule myOverlay, and set the parameter enableDrops to true. |
| 556 | |
| 557 | This case, however, is too specific. We may not always work with the SimpleUnderlayNetwork. Or we may need that parameter to be set for all nodes. For those cases the wildcards * and ** are of use. For example: |
558 | 558 | |
559 | 559 | {{{ |