aboutsummaryrefslogtreecommitdiff
path: root/src/pkt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkt.c')
-rw-r--r--src/pkt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pkt.c b/src/pkt.c
index 11570f0..5f6583b 100644
--- a/src/pkt.c
+++ b/src/pkt.c
@@ -122,8 +122,9 @@ void handle_packet(char *buf, unsigned bytes, int is_pcap, struct sockaddr_in *a
if (!is_pcap)
cur->xfer.icmp_in++;
}
- else
+ else {
type_flag = kProxy_flag;
+ }
pkt_flag = pt_pkt->state & kFlag_mask;
pt_pkt->state &= ~kFlag_mask;
@@ -315,7 +316,7 @@ void handle_packet(char *buf, unsigned bytes, int is_pcap, struct sockaddr_in *a
}
handle_data(pkt, bytes, cur, 0);
}
- handle_ack((uint16_t)pt_pkt->ack, cur);
+ handle_ack(pt_pkt->ack, cur);
cur->last_activity = now;
}
}
@@ -462,7 +463,7 @@ void handle_extended_options(proxy_desc_t *cur)
}
}
-void handle_ack(uint16_t seq_no, proxy_desc_t *cur)
+void handle_ack(uint32_t seq_no, proxy_desc_t *cur)
{
if (cur->send_wait_ack > 0) {
int i, can_ack = 0, count = 0;