lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-users] TCP transmission stalls


From: Pavel Grishin
Subject: [lwip-users] TCP transmission stalls
Date: Fri, 16 Jun 2006 15:15:35 +0300

Hello,

I am running a test program which sends some text continuously.

while(1){
        do{
                while(tcp_sndbuf(serv_pcb) < strlen(text));
                err = tcp_write(serv_pcb, text, strlen(text), 0);
                tcp_output(serv_pcb);
        }while(err != ERR_OK);
}

It transmits a number of times and then stops with err = ERR_MEM.
Why does it happen?

I am using lwIP with VDK and blackfin.

Pavel.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]