Displaying 2 results from an estimated 2 matches for "sakiyama".
Did you mean:
akiyama
2003 May 09
2
TCP_NODELAY always set, now?
I know that there was a discussion on this about a year back, and
there is a bug 556 this week that mentions TCP_NODELAY.
However, when I use ssh through a pipe (e.g., to tunnel through an
HTTP proxy using CONNECT) I see:
getsockopt TCP_NODELAY: Socket operation on non-socket
How do I tell which end is generating this (I'm assuming the local
side, which is running through the pipe).
Also,
2003 Apr 03
0
minor cosmetic fix hwen using a proxy
I think following patch is better for "TCP_NODELAY on a non-socket"
bug.
Nobuo Sakiyama <nobuo at isl.rdc.toshiba.co.jp>
diff -u packet.c.dist packet.c
--- packet.c.dist Mon Dec 23 11:42:53 2002
+++ packet.c Thu Apr 3 18:06:12 2003
@@ -1344,6 +1344,7 @@
/* Only set socket options if using a socket. */
if (!packet_connection_is_on_socket())
+ return;
if (interac...