mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 02:19:18 +02:00
Reset sentlen when advancing
This commit is contained in:
parent
6fa0d98c99
commit
29b2348ca6
|
@ -35,11 +35,11 @@ void
|
|||
packet_advance(struct packet *packet)
|
||||
{
|
||||
packet->offset += packet->sentlen;
|
||||
packet->sentlen = 0;
|
||||
if (packet->offset == packet->len) {
|
||||
/* Packet completed */
|
||||
packet->offset = 0;
|
||||
packet->len = 0;
|
||||
packet->sentlen = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue