lwIP求助,关于socket编写TCP服务器的问题
发布网友
发布时间:2022-04-20 06:28
我来回答
共1个回答
热心网友
时间:2023-06-28 03:58
查了下,错误发生在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 好像没有定义。。。