📄 exam.c
字号:
/****************************************************************************【文 件 名 称】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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -