📄 app.c
字号:
/*****************************************************************************
* "A Very Simple Application" from the uIP 0.9 documentation
*****************************************************************************/
#include "app.h"
void example1_init(void)
{
uip_listen(HTONS(1234));
}
void example1_app(void)
{
if(uip_newdata() || uip_rexmit())
{
uip_send("ok\n", 3);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -