diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-06-01 13:46:25 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-06-01 13:46:25 +0000 |
commit | f3d700174eed69d612650df3c63e8b56cebf2c52 (patch) | |
tree | 19e2df91143919aac7fdab88ca1f3040a4d4b50f /examples | |
parent | 24c375545c6ef7d03e8a18dea2cb06763059b1b9 (diff) | |
parent | f75a6d9b31479060dd1d1a52102a714ae7c48154 (diff) | |
download | rumba-f3d700174eed69d612650df3c63e8b56cebf2c52.tar.gz rumba-f3d700174eed69d612650df3c63e8b56cebf2c52.zip |
Merge branch 'noreg' into 'master'
model: remove registration and bindings
Closes #7
See merge request !47
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/two-layers.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/two-layers.py b/examples/two-layers.py index 9d1a6b3..b4e4e64 100755 --- a/examples/two-layers.py +++ b/examples/two-layers.py @@ -32,9 +32,7 @@ e3 = ShimEthDIF("e3") a = Node("a", difs = [n3, n4, n1, e1], - dif_registrations = {n4: [n1], n3: [n1], n1 : [e1]}, - registrations = {"rinaperf.server" : [n3]}, - bindings = {"rinaperf.server" : "/usr/bin/rinaperf"}) + dif_registrations = {n4: [n1], n3: [n1], n1 : [e1]}) b = Node("b", difs = [n1, e1, e2], |