Disable Nagle Algorithm on tcpclient
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
The tcpip function allowed a user to disable the Nagle algorithm. tcpip is being replaced by tcpclient, but I don't see the ability to disable Nagle's algorithm for tcpclient. Is it possible to disable it in MATLAB?
0 Commenti
Risposte (1)
Manas Meena
il 2 Dic 2020
The matlabroot/toolbox/coder/rtiostream/src/rtiostreamtcpip/rtiostream_tcpip.c file shows how you can turn off Nagle's algorithm:
/* Disable Nagle's Algorithm*/
option = 1;
sockStatus = setsockopt(lFd,IPPROTO_TCP,TCP_NODELAY,(char*)&option,sizeof(option));
The code for your custom TCP/IP implementation can require modification.
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!