1
0
mirror of https://github.com/simh/simh.git synced 2026-02-08 09:12:10 +00:00

SOCKET: Extended TMXR packet capabilities to disable the Nagle algorithm when TCP packets transports are used.

This commit is contained in:
Mark Pizzolato
2014-01-23 09:31:05 -08:00
parent bebb787325
commit 9ab6c4d1c1
7 changed files with 80 additions and 15 deletions

View File

@@ -1897,7 +1897,7 @@ else
if (sim_log) fprintf (sim_log, msg, errbuf);
return SCPE_OPENERR;
}
dev->fd_handle = sim_connect_sock_ex (localport, hostport, NULL, NULL, TRUE);
dev->fd_handle = sim_connect_sock_ex (localport, hostport, NULL, NULL, TRUE, FALSE);
if (INVALID_SOCKET == dev->fd_handle)
return SCPE_OPENERR;
dev->eth_api = ETH_API_UDP;