Displaying 3 results from an estimated 3 matches for "nobuo".
Did you mean:
nobug
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...
2009 Jan 13
2
My console app doesn't run in wine
Hi,
Dunno wether it's a problem in my app or wine, so I thought I'd better post here first before going to bugzilla. So pardon me if I'm wrong here with this.
I wrote a Win32 console app which runs without problems on at least Win98 and WinXP.
If I start it by doubleclick it also seems to run fine in wine (as far as it runs as a console app started without any command line args ;) )