野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 24339|回复: 2

stm32f207裸跑LWip

[复制链接]
发表于 2014-5-8 16:04:15 | 显示全部楼层 |阅读模式
发送数据的时候,超过1500个字节数据丢失? void client_send(uint8 *pdata_buf, uint16 size)
{
        struct pbuf *p_tx;

        if (ConnectState == NET_UNLINK)
                return;
        if (ptcp_client == NULL)
                return;

        if ((pdata_buf != NULL) && (size > 0)) {
                p_tx = pbuf_alloc(PBUF_TRANSPORT, size , PBUF_POOL);
                if (p_tx != NULL) {
                        /* copy data to pbuf */
                        pbuf_take(p_tx, (char*)pdata_buf, size);
                        if (ptcp_client->p_tx == NULL)
                                ptcp_client->p_tx = p_tx;
                        else
                                pbuf_cat(ptcp_client->p_tx, p_tx);
                        tcp_client_send(pClientPcb, ptcp_client);
                }
        }
}
回复

使用道具 举报

发表于 2014-5-8 16:05:32 | 显示全部楼层
印象中网络数据包的数据是不能超过1500的,超过1500的话分开成两个包来发送
回复 支持 反对

使用道具 举报

发表于 2014-5-9 12:18:52 | 显示全部楼层
以太网包传输最大字节好像是1500
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-24 02:04 , Processed in 0.027459 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表