lwIP求助,关于socket编写TCP服务器的问题

2024-12-21 21:58:41
推荐回答(1个)
回答1:

查了下,错误发生在accept_function()函数中:

/* We have to set the callback here even though
* the new socket is unknown. conn->socket is marked as -1. */
newconn = netconn_alloc(conn->type, conn->callback);

if (newconn == NULL) {
return ERR_MEM;
}

这里返回的 ERR_MEM 导致后面的问题,也就是内存分配出问题了。
到 netconn_alloc() 函数中发现 MEMP_NETCONN 好像没有定义。。。