> The two possible solutions you have right now are either to modify your > ethernet driver or to redesign your application to not call send() for > each byte. The latter would of course be the better solution.
I agree with the latter. I think it's pretty straight forward to start a timer for some period (1-5S) on each character to be sent and on a timeout of that timer, or on a full buffer, call send(). Basically what Nagle does but you're doing it at the application layer. Bill _______________________________________________ lwip-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/lwip-users
