| www.delorie.com/archives/browse.cgi | search |
Patrick Doyle wrote:
> If that is the case, would anybody mind if I posted a (simple) patch to
> openSSH code which added a timeout to the call(s) to select()? If I do
> that, will the patch be incorporated into the cygwin release of
> openSSH? Is there some way to feed that patch back to the openSSH
> development team?
I am that way.
However, your patch should be clean in terms of OS handling.
I recommend using the already used construct:
#ifdef HAVE_CYGWIN
if (! is_winnt)
{
...your w9x specific code...
}
#endif
The definition of is_winnt is used eg. in `cygwin_utils.c':
#define is_winnt (GetVersion() < 0x80000000)
Corinna
--
Corinna Vinschen Please, send mails regarding Cygwin to
Cygwin Developer mailto:cygwin AT cygwin DOT com
Red Hat, Inc.
mailto:vinschen AT redhat DOT com
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |