exam.c

来自「移植uIP1.0到51单片机上的版本mcu_netV1.00 uIP ARP 」· C语言 代码 · 共 30 行

C
30
字号
/****************************************************************************【文  件  名  称】Exam.c【功  能  描  述】TCP/IP处理应用层例子【程  序  版  本】V1.0【作          者】gateway****************************************************************************/#include "Exam.h"#include <string.h>void example1_init(void) {    uip_listen(1234);}void example1_app(void) {    char *hello = "Hello,how are you?\n";    if(uip_connected())    {        uip_send(hello,strlen(hello)+1);    }    if(uip_newdata())     {        uip_send(uip_appdata,uip_len);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?