On Fri, Sep 18, 2009 at 4:07 PM, Kieran Mansley
<address@hidden> wrote:
On Fri, 2009-09-18 at 14:47 +0200, Oscar F wrote:
> Hello again, at the moment the creation and listening of socket TCP is
> work!!. the other thread WEB basic server work too, but the
> variable errno has taken several values: 36240 and 30160. What means
> this codes?
They are platform dependent. Look for what your platform defines error
numbers to be. Some are set (if you have LWIP_PROVIDE_ERRNO) in
src/include/lwip/arch.h but these are all much smaller than the numbers
you quote, and so I'm sure these must come from your platform
definitions.
> this is my configuration today
> * Define default values for unconfigured parameters. */
> #define LWIP_NOASSERT 1 // To suppress some errors for now (no debug
> output)
That is a really bad idea. Fix the errors that cause the assertions,
don't ignore them and hope it will all be OK. The assertions are there
for a reason! Please turn assertions back on as without them it will be
very difficult to offer help.