1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-15 21:32:43 +01:00
RIOT/pkg/lwip/contrib/sock
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
..
ip pkg/lwip: Use NETIF_FOREACH macro in sock implementation 2021-03-06 11:27:14 +01:00
tcp lwip_sock: Fix computation of last_offset on partial reads. 2021-04-04 12:45:54 +02:00
udp pkg/lwip: Implement sock_aux_local 2020-12-04 12:51:48 +01:00
lwip_sock.c pkg/lwip: Use NETIF_FOREACH macro in sock implementation 2021-03-06 11:27:14 +01:00
Makefile pkg: provide sock_ip support for lwip 2017-01-17 09:00:44 +01:00