diff options
author | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-09-28 10:24:48 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-10-11 17:09:07 +0200 |
commit | 952d404e87ca6001e546fe9105bdb6760c468760 (patch) | |
tree | f938d47ace434bf5f9dec0e34f47d3fc9d622234 /router.c | |
parent | db43862074de2ac2177949f943997f16b2b2a1fd (diff) |
switch: explicit route supportHEADflounder_5.99.1flounder/5.99.1eel_5.0.3eel_5.0.2eel_5.0.1eel_5.0.0eel_4.99.5eel_4.99.4eel_4.99.3eel/5.0.3eel/5.0.2eel/5.0.1eel/5.0.0eel/4.99.5eel/4.99.4eel/4.99.35.99.15.0.35.0.25.0.15.0.04.99.54.99.44.99.3mastereel
- stream to device
Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
Diffstat (limited to 'router.c')
-rw-r--r-- | router.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -500,9 +500,9 @@ void implement_default_route (struct userdata *u, uint32_t stamp) { if (start->direction == agl_input) - agl_switch_setup_link (u, start, end, false); + agl_switch_setup_link (u, start, end); else - agl_switch_setup_link (u, end, start, false); + agl_switch_setup_link (u, end, start); } agl_node *find_default_route (struct userdata *u, agl_node *start, uint32_t stamp) |