mirror of
https://github.com/simh/simh.git
synced 2026-03-06 11:13:29 +00:00
Fixed problem where transmit buffers are never sent if the first attempt to send them happens when there is no connection to the peer.
This commit is contained in:
@@ -393,10 +393,11 @@ t_stat send_buffer(int dupindex)
|
||||
{
|
||||
r = send_packet(&dup_dev[dupindex], &kdp_ldsc[dupindex], d->txbuf, d->txbuflen);
|
||||
d->txnext += d->txnow;
|
||||
d->txnow = 0;
|
||||
kmc_output = TRUE;
|
||||
}
|
||||
|
||||
d->txnow = 0;
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user