Skip to content

Commit 1b5ea31

Browse files
committed
PIM: examples: flatten examples/pim to a single directory level
The pim examples were nested two levels deep (dm/basic, dm/ipv6, sm/basic, sm/ipv6, ssm/ipv6). Flatten to one level: the IPv4 "basic" demos move up to the family dir (dm/basic -> dm, sm/basic -> sm) and the IPv6 variants get an _ipv6 suffix (dm/ipv6 -> dm_ipv6, sm/ipv6 -> sm_ipv6, ssm/ipv6 -> ssm_ipv6). iptv is unchanged. Updates each network's `package inet.examples.pim.*` declaration and the tests/fingerprint/examples.csv working dirs to match. The package rename does not affect the runtime module paths, so all 10 PIM example fingerprints stay byte-identical.
1 parent 2d5e040 commit 1b5ea31

13 files changed

Lines changed: 13 additions & 13 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// @author: Tomas Prochazka (mailto:xproch21@stud.fit.vutbr.cz), Vladimir Vesely (mailto:ivesely@fit.vutbr.cz)
1010
// @brief Topology with PIM network
1111

12-
package inet.examples.pim.dm.basic;
12+
package inet.examples.pim.dm;
1313

1414
import inet.networklayer.configurator.ipv4.Ipv4NetworkConfigurator;
1515
import inet.node.ethernet.Eth100M;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// SPDX-License-Identifier: LGPL-3.0-or-later
55
//
66

7-
package inet.examples.pim.dm.ipv6;
7+
package inet.examples.pim.dm_ipv6;
88

99
import inet.networklayer.configurator.ipv6.Ipv6FlatNetworkConfigurator;
1010
import inet.node.ethernet.Eth100M;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// @author: Tomas Prochazka (mailto:xproch21@stud.fit.vutbr.cz), Vladimir Vesely (mailto:ivesely@fit.vutbr.cz)
1010
// @brief Topology with PIM network
1111

12-
package inet.examples.pim.sm.basic;
12+
package inet.examples.pim.sm;
1313

1414
import inet.networklayer.configurator.ipv4.Ipv4NetworkConfigurator;
1515
import inet.node.ethernet.Eth100M;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// SPDX-License-Identifier: LGPL-3.0-or-later
55
//
66

7-
package inet.examples.pim.sm.ipv6;
7+
package inet.examples.pim.sm_ipv6;
88

99
import inet.networklayer.configurator.ipv6.Ipv6FlatNetworkConfigurator;
1010
import inet.node.ethernet.Eth100M;

0 commit comments

Comments
 (0)