diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-01-29 19:50:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 19:50:01 +0100 |
commit | c1fb939758d6dc752899b514ed6467980c73beb5 (patch) | |
tree | e0f68ceeda33caf2078adc18556ed0ae21f3f3fb | |
parent | 9d9173684fc05c0f5b4fe1ba4ee9f754585841a9 (diff) | |
parent | bb064bb52a6405116e53d33853fc254f0cb6398d (diff) |
Merge pull request #7 from Masaq-/fix-resend-icmp
fix NAT compatibility
-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 e56ab69..c409adb 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; |