1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/lwip/contrib
iosabi afddb46c51 lwip_sock: Fix computation of last_offset on partial reads.
lwip receives network buffers that are made available to lwip_sock_tcp
calling `netconn_recv_tcp_pbuf`. The size of these buffers depends on
the size of the network packets. An application calling `sock_tcp_read`
can pass any arbitrary buffer size to read (copy) from these internal
network buffers, which may be smaller. lwip_sock_tcp keeps around the
last network buffer (`struct pbuf last_buf`) and the offset into this
buffer already consumed by the application (`last_offset`).

However, when multiple application reads from the same `pbuf` buffer
occur, the `last_offset` must be updated incrementing it. The code had
a bug that would work only when `last_offset` was either 0 (no previous
partial read) or when the current read was consuming all the remaining
data (when `buf_len == copylen`).

This patch fixes the issue an allows multiple reads from the same
buffer.
2021-04-04 12:45:54 +02:00
..
netdev pkg/lwip: Start DHCP early for all Ethernet netifs 2021-03-25 16:01:27 +01:00
sock lwip_sock: Fix computation of last_offset on partial reads. 2021-04-04 12:45:54 +02:00
lwip.c pkg/lwip: Start DHCP early for all Ethernet netifs 2021-03-25 16:01:27 +01:00
Makefile lwip: add port for RIOT 2016-03-30 00:10:38 +02:00
sys_arch.c pkg/lwip: fix typo (semaphor => semaphore) 2021-01-08 10:15:33 +01:00