Home | History | Annotate | Download | only in openssh

Lines Matching full:ack

1354 	struct outstanding_ack *ack = NULL;
1433 ack = xmalloc(sizeof(*ack));
1434 ack->id = ++id;
1435 ack->offset = offset;
1436 ack->len = len;
1437 TAILQ_INSERT_TAIL(&acks, ack, tq);
1441 buffer_put_int(&msg, ack->id);
1451 if (ack == NULL)
1452 fatal("Unexpected ACK %u", id);
1471 for (ack = TAILQ_FIRST(&acks);
1472 ack != NULL && ack->id != r_id;
1473 ack = TAILQ_NEXT(ack, tq))
1475 if (ack == NULL)
1477 TAILQ_REMOVE(&acks, ack, tq);
1478 debug3("In write loop, ack for %u %u bytes at %lld",
1479 ack->id, ack->len, (long long)ack->offset);
1481 xfree(ack);