Skip to content

Commit c1a2fd5

Browse files
author
Tilmann Zäschke
committed
AS not listed
1 parent 940df75 commit c1a2fd5

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ TODO
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

src/main/java/org/scion/multiping/PingAll.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()) {

0 commit comments

Comments
 (0)