Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2001-08-14 11:41:45 +0400
committerCorinna Vinschen <corinna@vinschen.de>2001-08-14 11:41:45 +0400
commit6a574f1ad6df42447a242b521c3bdc9e9039910c (patch)
treeae49f1fb41c40a10c1ab7e97240d0eb3b89fb265 /winsup/cygwin/fhandler_socket.cc
parent52c80be81471afa563671b5b78e8de702faa54d6 (diff)
* fhandler.cc (fhandler_base::fcntl): Use new O_NONBLOCK_MASK define.
* fhandler.h: Move definitions of O_NOSYMLINK, O_DIROPEN and OLD_O_NDELAY from winsup.h to here. Add O_NONBLOCK_MASK define. * fhandler_socket.cc (fhandler_socket::close): Add hack to allow a graceful shutdown even if shutdown() hasn't been called by the application. Add debug output. (fhandler_socket::ioctl): Set fhandler's NONBLOCK flag according to FIONBIO setting. (fhandler_socket::fcntl): Use new O_NONBLOCK_MASK define. Actually set `request' before using it. * fhandler_tty.cc: Use new O_NONBLOCK_MASK define throughout. (fhandler_tty_slave::ioctl): Set fhandler's NONBLOCK flag according to FIONBIO setting. (fhandler_pty_master::ioctl): Ditto. * net.cc (wsock_event::prepare): Compare WSACreateEvent return code with `WSA_INVALID_EVENT' according to MSDN. * syscalls.cc (_read): Use new O_NONBLOCK_MASK define.
Diffstat (limited to 'winsup/cygwin/fhandler_socket.cc')
-rw-r--r--winsup/cygwin/fhandler_socket.cc25
1 files changed, 18 insertions, 7 deletions
diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc
index 185843b53..7c1be0715 100644
--- a/winsup/cygwin/fhandler_socket.cc
+++ b/winsup/cygwin/fhandler_socket.cc
@@ -257,6 +257,15 @@ fhandler_socket::close ()
int res = 0;
sigframe thisframe (mainthread);
+ /* HACK to allow a graceful shutdown even if shutdown() hasn't been
+ called by the application. Note that this isn't the ultimate
+ solution but it helps in many cases. */
+ struct linger linger;
+ linger.l_onoff = 1;
+ linger.l_linger = 60; /* seconds. 2MSL according to BSD implementation. */
+ setsockopt (get_socket (), SOL_SOCKET, SO_LINGER,
+ (const char *)&linger, sizeof linger);
+
if (closesocket (get_socket ()))
{
set_winsock_errno ();
@@ -265,6 +274,7 @@ fhandler_socket::close ()
close_secret_event ();
+ debug_printf ("%d = fhandler_socket::close()", res);
return res;
}
@@ -395,6 +405,10 @@ fhandler_socket::ioctl (unsigned int cmd, void *p)
/* Start AsyncSelect if async socket unblocked */
if (*(int *) p && get_async ())
WSAAsyncSelect (get_socket (), gethwnd (), WM_ASYNCIO, ASYNC_MASK);
+
+ int current = get_flags () & O_NONBLOCK_MASK;
+ int new_flags = *(int *) p ? (!current ? O_NONBLOCK : current) : 0;
+ set_flags ((get_flags () & ~O_NONBLOCK_MASK) | new_flags);
}
break;
}
@@ -412,20 +426,17 @@ fhandler_socket::fcntl (int cmd, void *arg)
{
case F_SETFL:
{
- /* Care for the old O_NDELAY flag. If one of the flags is set,
- both flags are set. */
- const int allowed_flags = O_NONBLOCK | OLD_O_NDELAY;
-
/* Carefully test for the O_NONBLOCK or deprecated OLD_O_NDELAY flag.
Set only the flag that has been passed in. If both are set, just
record O_NONBLOCK. */
- int new_flags = (int) arg & allowed_flags;
+ int new_flags = (int) arg & O_NONBLOCK_MASK;
if ((new_flags & OLD_O_NDELAY) && (new_flags & O_NONBLOCK))
new_flags = O_NONBLOCK;
- current = get_flags () & allowed_flags;
+ current = get_flags () & O_NONBLOCK_MASK;
+ request = new_flags ? 1 : 0;
if (!!current != !!new_flags && (res = ioctl (FIONBIO, &request)))
break;
- set_flags ((get_flags () & ~allowed_flags) | new_flags);
+ set_flags ((get_flags () & ~O_NONBLOCK_MASK) | new_flags);
break;
}
default: