Skip to content

Commit

Permalink
automatic commit at releng box
Browse files Browse the repository at this point in the history
no todo: sho ipv4 bgp x flaps
  • Loading branch information
mc36 committed Nov 10, 2022
1 parent a257b6d commit eb86a18
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13543,3 +13543,5 @@ todo: colorful bgp lu implementation accroding to https://lists.geant.org/sympa/
---------------------------------- 2022-08-30 18:18:06 22.8.30
todo: sho ipv4 bgp x flaps
todo: fix enter in spacetab term behaviour
---------------------------------- 2022-11-10 06:00:07 22.11.10
no todo: sho ipv4 bgp x flaps
18 changes: 17 additions & 1 deletion src/net/freertr/ip/ipMpls.java
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,15 @@ public static void gotPolkaPack(ifcPolka fwdP, ipFwd fwd4, ipFwd fwd6, packHolde
logger.info("no route for index " + id);
return;
}
if (ntry.best.nextHop == null) {
logger.info("no nexthop for index " + id);
return;
}
ipFwdIface ifc = (ipFwdIface) ntry.best.iface;
if (ifc == null) {
logger.info("no iface for index " + id);
return;
}
ifc.lower.sendPolka(pck, ntry.best.nextHop);
}

Expand Down Expand Up @@ -773,9 +781,17 @@ public static void gotMpolkaPack(ifcMpolka fwdP, ipFwd fwd4, ipFwd fwd6, packHol
tabRouteEntry<addrIP> ntry = fwd.actualU.find(idx.prefix);
if (ntry == null) {
logger.info("no route for index " + i);
return;
continue;
}
if (ntry.best.nextHop == null) {
logger.info("no nexthop for index " + id);
continue;
}
ipFwdIface ifc = (ipFwdIface) ntry.best.iface;
if (ifc == null) {
logger.info("no iface for index " + id);
continue;
}
ifc.lower.sendMpolka(pck.copyBytes(true, true), ntry.best.nextHop);
}
if ((id & 1) == 0) {
Expand Down
2 changes: 1 addition & 1 deletion src/rtr.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
url;file;result;test
-;-;-;freeRouter v22.11.10-cur, done by cs@nop.
-;-;-;2022-11-10 05:57:09, took 00:08:46, with 80 workers, on 3024 cases, 0 failed, 0 traces, 1 retries
-;-;-;2022-11-10 06:08:38, took 00:08:30, with 80 workers, on 3024 cases, 0 failed, 0 traces, 1 retries
-;-;-;./rtr.bin
http://sources.freertr.org/cfg/basic01.tst;basic01.tst;success;dummy test
http://sources.freertr.org/cfg/basic02.tst;basic02.tst;success;interface with slot
Expand Down
1 change: 0 additions & 1 deletion src/rtr.ftr
Original file line number Diff line number Diff line change
Expand Up @@ -3022,7 +3022,6 @@ qc pass: socks4 server
qc pass: socks5 server
qc pass: tacacs server
qc pass: udp forwarder server
todo: sho ipv4 bgp x flaps
todo: fix enter in spacetab term behaviour
todo: allowed v4/v6 range to temper
todo: colorful bgp lu implementation accroding to https://lists.geant.org/sympa/arc/rare-dev/2022-08/msg00042.html
Expand Down
2 changes: 1 addition & 1 deletion src/rtr.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</style>
<title>tester</title></head><body>
release: freeRouter v22.11.10-cur, done by cs@nop.<br/>
tested: 2022-11-10 05:57:09, took 00:08:46, with 80 workers, on 3024 cases, 0 failed, 0 traces, 1 retries<br/>
tested: 2022-11-10 06:08:38, took 00:08:30, with 80 workers, on 3024 cases, 0 failed, 0 traces, 1 retries<br/>
jvm: ./rtr.bin<br/>
<br/>
<table><thead><tr><td><b>file</b></td><td><b>result</b></td><td><b>test</b></td></tr></thead><tbody>
Expand Down

0 comments on commit eb86a18

Please sign in to comment.