| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sources DOT redhat DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sources DOT redhat DOT com> |
| List-Help: | <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT sources DOT redhat DOT com |
| Delivered-To: | mailing list cygwin AT sources DOT redhat DOT com |
| Date: | Mon, 10 Sep 2001 11:38:40 -0400 (EDT) |
| From: | Omid Roshan-Afshar <omid AT acorn-networks DOT com> |
| To: | cygwin AT cygwin DOT com |
| Subject: | recv() blocking for non-blocking socket |
| Message-ID: | <Pine.GSO.4.21.0109101130510.899-100000@wiehle.acorn-networks.com> |
| MIME-Version: | 1.0 |
I've looked through the archive, and I found
some discussion about using accept() on non-blocking
sockets, but none on recv(). If someone could spot
any stupid errors in the following code, that would
be great.
{
int true = 1;
if (ioctl(sock_handle, FIONBIO, &true) != 0) {
if (errmsg!=NULL)
sprintf(errmsg, "ioctl(): %s", strerror(errno));
return GFAPI_ERR_FAIL;
}
}
I call recv after I do this and it blocks. I *think* I'm
doing the appropriate thing to make the socket non-blocking.
cygwin1.dll
File Version: 1.3.2
APIVersion: 0.39
BuildDate: 2001-05-20 23:28
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |