如何在嵌入式實時操作系統(tǒng)uC/0SII上移植實現(xiàn)LwIP
實用Berkley API實現(xiàn)的tcpecho_thread是一個TCP echo服務(wù)器,*7號端口,程序框架如下:
void tcpecho_thread(void *arg){
conn = netconn_new(NETCONN_TCP); //創(chuàng)建新的連接標(biāo)識
netconn_bind(conn, NULL, 7); //綁定到7號端口
netconn_listen(conn); //開始*端口
while(1){
newconn = netconn_aCCept(conn); //接收外部到來的連接
buf = netconn_recv(newconn) //獲取數(shù)據(jù)
……. //處理數(shù)據(jù)
netconn_write(newconn, data, len, NETCONN_COPY); //發(fā)送數(shù)據(jù)
netconn_delete(newconn); //釋放本次連接
}
}
編譯運行后,用PINg ip地址命令可以得到ICMP reply響應(yīng)。用telnet ip地址 7(登錄7號端口)命令可以看到echo server的回顯效果。說明ARP、ICMP、IP、TCP協(xié)議都已正確運行。
tcp/ip相關(guān)文章:tcp/ip是什么
評論