diff options
author | Masaq- <tilt@techie.com> | 2019-01-29 06:11:55 +0000 |
---|---|---|
committer | Masaq- <tilt@techie.com> | 2019-01-29 06:11:55 +0000 |
commit | bb064bb52a6405116e53d33853fc254f0cb6398d (patch) | |
tree | 074362e0c114e0c4e263a204427683b9f385cf11 | |
parent | 8a7a9a83ae7b15755cf7c459872670abca4cbd14 (diff) |
update the ICMP identifier of resent packets
-rw-r--r-- | src/ptunnel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ptunnel.c b/src/ptunnel.c index 8766acf..799d17b 100644 --- a/src/ptunnel.c +++ b/src/ptunnel.c @@ -629,6 +629,7 @@ void* pt_proxy(void *args) { if (cur->send_ring[idx].pkt && cur->send_ring[idx].last_resend+kResend_interval < now) { pt_log(kLog_debug, "Resending packet with seq-no %d.\n", cur->send_ring[idx].seq_no); cur->send_ring[idx].last_resend = now; + cur->send_ring[idx].pkt->identifier = htons(cur->icmp_id); cur->send_ring[idx].pkt->seq = htons(cur->ping_seq); cur->ping_seq++; cur->send_ring[idx].pkt->checksum = 0; |