Skip to content

Commit

Permalink
Fixed the TCP window probe to have the right flags/seq
Browse files Browse the repository at this point in the history
Fixed #126
  • Loading branch information
Daniele Lacamera committed Mar 14, 2014
1 parent d5261a4 commit 0d58927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/pico_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1147,7 +1147,7 @@ static void tcp_send_ack(struct pico_socket_tcp *t)
static void tcp_send_probe(struct pico_socket_tcp *t)
{
/* tcp_dbg("Sending probe\n"); */
tcp_send_empty(t, PICO_TCP_PSH, 0);
tcp_send_empty(t, PICO_TCP_PSHACK, 1);
}

static int tcp_send_rst(struct pico_socket *s, struct pico_frame *fr)
Expand Down

0 comments on commit 0d58927

Please sign in to comment.