another one

This commit is contained in:
J.Schröder 2025-03-22 16:14:08 +01:00
parent a9a90fe794
commit 46d8804664

View File

@ -138,7 +138,7 @@ void FishEyeStateRoutingModule::printLSPDB(){
for(int i = 0; i< etr.second.LSP.neighbors_count;i++){
printf("%u, ", etr.second.LSP.neighbors[i].node_id -16);
}
printf(" Timeout: %u, forwarded: %d\n",(uint32_t) ( etr.second.timeout) - ((int64_t) getTime()),etr.second.forwarded);
printf(" Timeout: %u, forwarded: %d\n",(uint32_t) (((int64_t) etr.second.timeout) - ((int64_t) getTime())),etr.second.forwarded);
}
printf("Total: %lu\n",LSPDB.size());
}