On Tue, 2006-12-05 at 07:41 +0000, B B wrote: > /* TCP Maximum segment size. */ > #define TCP_MSS 4000//1500
Too high - bigger than 1500 is most probably unnecessary. > /* TCP sender buffer space (bytes). */ > #define TCP_SND_BUF 4000//1500 If you want high performance this should probably be larger. > /* TCP receive window. */ > #define TCP_WND 1500 Far too small. You have limited the PC to only send you one full size segment at a time. > i hope there is something to be done about the low performance i am > seeing. Hope that helps. Kieran _______________________________________________ lwip-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/lwip-users
