aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaq- <tilt@techie.com>2019-03-01 02:16:40 +0000
committerMasaq- <tilt@techie.com>2019-03-01 02:16:40 +0000
commit47627aca9b4b59c11eedc319f00000c3c4452515 (patch)
tree967fc19a365b148017cb2b9eca420a03d8bcf188
parentca931dfbce1f53aa510e4974fbcc584ee4d8744e (diff)
empty pings not to be sent when idle
-rw-r--r--src/pdesc.h1
-rw-r--r--src/pkt.c6
-rw-r--r--src/ptunnel.c7
3 files changed, 11 insertions, 3 deletions
diff --git a/src/pdesc.h b/src/pdesc.h
index 169c069..f02b870 100644
--- a/src/pdesc.h
+++ b/src/pdesc.h
@@ -156,6 +156,7 @@ typedef struct proxy_desc_t {
double last_ack;
/** Time when a packet was last received. */
double last_activity;
+ double last_data_activity;
uint16_t window_size;
double ack_interval;
double resend_interval;
diff --git a/src/pkt.c b/src/pkt.c
index aa295fd..f022f5d 100644
--- a/src/pkt.c
+++ b/src/pkt.c
@@ -297,6 +297,10 @@ void handle_packet(char *buf, unsigned bytes, int is_pcap, struct sockaddr_in *a
}
if (cur && cur->sock) {
+ double now = time_as_double();
+ if (pt_pkt->state != kProto_ack) {
+ cur->last_data_activity = now;
+ }
if (pt_pkt->state == kProto_data || pt_pkt->state == kProxy_start ||
pt_pkt->state == kProto_ack)
{
@@ -309,7 +313,7 @@ void handle_packet(char *buf, unsigned bytes, int is_pcap, struct sockaddr_in *a
handle_ack((uint16_t)pt_pkt->ack, cur->send_ring, &cur->send_wait_ack,
0, cur->send_idx, &cur->send_first_ack, &cur->remote_ack_val,
is_pcap, cur->window_size);
- cur->last_activity = time_as_double();
+ cur->last_activity = now;
}
}
}
diff --git a/src/ptunnel.c b/src/ptunnel.c
index ff92937..1c4d8fd 100644
--- a/src/ptunnel.c
+++ b/src/ptunnel.c
@@ -662,13 +662,15 @@ void* pt_proxy(void *args) {
cur->remote_ack_val+1 != cur->next_remote_seq)
{
idx = cur->send_idx;
- cur->last_ack = now;
queue_packet(fwd_sock, cur->pkt_type, 0, 0, cur->id_no, cur->icmp_id,
&cur->my_seq, cur->send_ring, &cur->send_idx, &cur->send_wait_ack,
cur->dst_ip, cur->dst_port, kProto_ack | cur->type_flag,
&cur->dest_addr, cur->next_remote_seq, &cur->send_first_ack, &cur->ping_seq, cur->window_size);
cur->xfer.icmp_ack_out++;
- if (cur->send_ring[idx].pkt_len > sizeof(icmp_echo_packet_t) && cur->send_ring[idx].pkt->type == kICMP_echo_request) {
+ if (opts.empty_pings &&
+ cur->last_data_activity > cur->last_ack &&
+ cur->send_ring[idx].pkt_len > sizeof(icmp_echo_packet_t) &&
+ cur->send_ring[idx].pkt->type == kICMP_echo_request) {
for (uint16_t e = 0; e < opts.empty_pings; e++) {
cur->send_ring[idx].pkt->seq = htons(cur->ping_seq);
cur->ping_seq++;
@@ -678,6 +680,7 @@ void* pt_proxy(void *args) {
0, (struct sockaddr*)&cur->dest_addr, sizeof(struct sockaddr));
}
}
+ cur->last_ack = now;
}
}
pthread_mutex_unlock(&chain_lock);