Skip to content

Commit

Permalink
automatic commit at releng box
Browse files Browse the repository at this point in the history
  • Loading branch information
mc36 committed Feb 3, 2025
1 parent 4e963a3 commit 59add98
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 19 deletions.
25 changes: 10 additions & 15 deletions src/org/freertr/rtr/rtrBgpMrt.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,21 +275,16 @@ public static int readNextMrt(packHolder hlp, packHolder tmp, packHolder pck, Ra
rtrBgpUtil.parseAttrib(pck, hlp);
if (hlp.ETHtype == rtrBgpUtil.attrReachable) {
hlp.getSkip(1);
switch (hlp.dataSize()) {
case addrIPv4.size:
addrIPv4 a4 = new addrIPv4();
hlp.getAddr(a4, 0);
pfx.best.nextHop = new addrIP();
pfx.best.nextHop.fromIPv4addr(a4);
break;
case addrIPv6.size:
case addrIPv6.size * 2:
addrIPv6 a6 = new addrIPv6();
hlp.getAddr(a6, 0);
pfx.best.nextHop = new addrIP();
pfx.best.nextHop.fromIPv6addr(a6);
break;
default:
if (hlp.dataSize() == addrIPv4.size) {
addrIPv4 a4 = new addrIPv4();
hlp.getAddr(a4, 0);
pfx.best.nextHop = new addrIP();
pfx.best.nextHop.fromIPv4addr(a4);
} else {
addrIPv6 a6 = new addrIPv6();
hlp.getAddr(a6, 0);
pfx.best.nextHop = new addrIP();
pfx.best.nextHop.fromIPv6addr(a6);
}
continue;
}
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 v25.2.3-cur, done by sprscc13@mrn0b0dy.
-;-;-;2025-02-03 06:19:11, took 00:16:02, with 50 workers, on 3634 cases, 0 failed, 0 traces, 4 retries
-;-;-;2025-02-03 07:33:56, took 00:15:15, with 50 workers, on 3634 cases, 0 failed, 0 traces, 1 retries
-;-;-;./rtr.bin, null
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
2 changes: 1 addition & 1 deletion src/rtr.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</style>
<title>tester</title></head><body>
release: freeRouter v25.2.3-cur, done by sprscc13@mrn0b0dy.<br/>
tested: 2025-02-03 06:19:11, took 00:16:02, with 50 workers, on 3634 cases, 0 failed, 0 traces, 4 retries<br/>
tested: 2025-02-03 07:33:56, took 00:15:15, with 50 workers, on 3634 cases, 0 failed, 0 traces, 1 retries<br/>
jvm: ./rtr.bin, other: null<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
2 changes: 1 addition & 1 deletion src/rtr8.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
url;file;result;test
-;-;-;freeRouter v25.2.3-cur, done by sprscc13@mrn0b0dy.
-;-;-;2025-02-03 06:32:07, took 00:12:26, with 50 workers, on 700 cases, 0 failed, 0 traces, 1 retries
-;-;-;2025-02-03 07:48:24, took 00:13:58, with 50 workers, on 700 cases, 0 failed, 0 traces, 0 retries
-;-;-;./rtr.bin, udp
http://sources.freertr.org/cfg/p4lang-acl001.tst;p4lang-acl001.tst;success;p4lang: copp
http://sources.freertr.org/cfg/p4lang-acl002.tst;p4lang-acl002.tst;success;p4lang: ingress access list
Expand Down
2 changes: 1 addition & 1 deletion src/rtr8.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</style>
<title>tester</title></head><body>
release: freeRouter v25.2.3-cur, done by sprscc13@mrn0b0dy.<br/>
tested: 2025-02-03 06:32:07, took 00:12:26, with 50 workers, on 700 cases, 0 failed, 0 traces, 1 retries<br/>
tested: 2025-02-03 07:48:24, took 00:13:58, with 50 workers, on 700 cases, 0 failed, 0 traces, 0 retries<br/>
jvm: ./rtr.bin, other: udp<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 59add98

Please sign in to comment.