diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/bp_sim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bp_sim.cpp b/src/bp_sim.cpp index 5b3c1bb1..0725a437 100755 --- a/src/bp_sim.cpp +++ b/src/bp_sim.cpp @@ -2358,8 +2358,8 @@ enum CCapFileFlowInfo::load_cap_file_err CCapFileFlowInfo::load_cap_file(std::st /* check that we don't have reserved TTL */ uint8_t ttl = pkt_indication.getTTL(); - if ( ttl > 127) { - pkt_indication.setTTL(127); + if ( ttl > 128) { + pkt_indication.setTTL(128); } pkt_indication.clearTOSReserve(); |