We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba5f79b commit 306dc46Copy full SHA for 306dc46
libraries/Network/src/NetworkInterface.cpp
@@ -839,7 +839,11 @@ size_t NetworkInterface::printTo(Print &out) const {
839
if (flags & ESP_NETIF_FLAG_MLDV6_REPORT) {
840
bytes += out.print(",V6_REP");
841
}
842
- bytes += out.println(")");
+ bytes += out.print(")");
843
+
844
+ bytes += out.print(" PRIO: ");
845
+ bytes += out.print(getRoutePrio());
846
+ bytes += out.println("");
847
848
bytes += out.print(" ");
849
bytes += out.print("ether ");
0 commit comments