File tree Expand file tree Collapse file tree
src/main/java/org/scion/multiping Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323
2424- Fixed mangled output with mode SHOW_SCMP_ONLY
2525 [ #31 ] ( https://github.com/netsec-ethz/scion-java-multiping/pull/31 )
26+ - Fixed occurrence of ISD=0 / "AS not listed"
27+ [ #32 ] ( https://github.com/netsec-ethz/scion-java-multiping/pull/32 )
2628
2729## [ 0.6.1] - 2025-12-12
2830
Original file line number Diff line number Diff line change @@ -436,7 +436,6 @@ public void onException(Throwable t) {
436436 for (Scmp .TimedMessage tm : messages .values ()) {
437437 Scmp .TracerouteMessage msg = (Scmp .TracerouteMessage ) tm ;
438438 summary .checkTotalMax (msg .getIsdAs (), msg );
439- seenAs .add (msg .getIsdAs ());
440439
441440 if (msg .isTimedOut ()) {
442441 summary .incPathTimeout ();
@@ -446,6 +445,7 @@ public void onException(Throwable t) {
446445 continue ;
447446 }
448447
448+ seenAs .add (msg .getIsdAs ());
449449 summary .incPathSuccess ();
450450
451451 if (best == null || msg .getNanoSeconds () < best .getNanoSeconds ()) {
You can’t perform that action at this time.
0 commit comments