* [gdbserver] SO_KEEPALIVE is being set on wrong socket.
@ 2007-07-08 1:22 Pedro Alves
2007-07-17 13:01 ` Daniel Jacobowitz
0 siblings, 1 reply; 3+ messages in thread
From: Pedro Alves @ 2007-07-08 1:22 UTC (permalink / raw)
To: gdb-patches
[-- Attachment #1: Type: text/plain, Size: 89 bytes --]
Hi,
I noticed that SO_KEEPALIVE is being set on the wrong socket.
Cheers,
Pedro Alves
[-- Attachment #2: keep_alive.diff --]
[-- Type: text/x-diff, Size: 894 bytes --]
2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
* remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
instead of on tmp_desc.
---
gdb/gdbserver/remote-utils.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: src/gdb/gdbserver/remote-utils.c
===================================================================
--- src.orig/gdb/gdbserver/remote-utils.c 2007-07-07 10:54:48.000000000 +0100
+++ src/gdb/gdbserver/remote-utils.c 2007-07-07 10:55:58.000000000 +0100
@@ -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. */
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-07-18 12:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-08 1:22 [gdbserver] SO_KEEPALIVE is being set on wrong socket Pedro Alves
2007-07-17 13:01 ` Daniel Jacobowitz
2007-07-18 18:55 ` Pedro Alves
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox