From: Guus Sliepen Date: Sat, 11 Apr 2020 22:29:49 +0000 (+0200) Subject: Handle incoming packets that don't fit into the receive buffer. X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;h=9809749c054e9beb9b01aa4e7e2f597871da133c;hp=9809749c054e9beb9b01aa4e7e2f597871da133c;p=utcp Handle incoming packets that don't fit into the receive buffer. If the receive buffer size is reduced while there are still incoming packets in flight, it can be that those will not fit inside the receive buffer. Instead of calling abort(), just handle as much of the packet as we can fit in the receive buffer, or handle the whole packet if it is in order since we bypass the receive buffer in that case. ---