* remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc

instead of on tmp_desc.
This commit is contained in:
Pedro Alves 2007-07-18 12:36:51 +00:00
parent a5d1b3b53e
commit aa0403d920
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
* remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
instead of on tmp_desc.
2007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
Daniel Jacobowitz <dan@codesourcery.com>

View file

@ -246,7 +246,8 @@ remote_open (char *name)
/* Enable TCP keep alive process. */
tmp = 1;
setsockopt (tmp_desc, SOL_SOCKET, SO_KEEPALIVE, (char *) &tmp, sizeof (tmp));
setsockopt (remote_desc, SOL_SOCKET, SO_KEEPALIVE,
(char *) &tmp, sizeof (tmp));
/* Tell TCP not to delay small packets. This greatly speeds up
interactive response. */