Reset sentlen when advancing

This commit is contained in:
Erik Ekman 2007-12-02 02:28:18 +00:00 committed by Erik Ekman
parent dcfa910d1c
commit 1f69a1b61e

View file

@ -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;
}
}