lwip-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [lwip-devel] lwIP 1.4.0 sockets bug? Not receiving packets on connec


From: David Buzz Carlson
Subject: Re: [lwip-devel] lwIP 1.4.0 sockets bug? Not receiving packets on connect
Date: Thu, 09 Feb 2012 22:13:14 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111229 Thunderbird/9.0

I added a function in sockets.c that looks like:

int get_err(int s)
{
    struct lwip_sock *sock;
    sock = &sockets[s];
    return err_to_errno(sock->err);
}

And then called that after the read fails.  This is the output I get:

Did not read expected 24 bytes: -1
errono: 5

The code for the function can be found here: http://pastebin.com/R2UmMWRs

The errno would seem to indicate that the call is EINPROGRESS but I am pretty sure it is set up as blocking so I'm not sure if I am getting that right.

Buzz



reply via email to

[Prev in Thread] Current Thread [Next in Thread]