⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcp_in.c

📁 关于TCP方面的
💻 C
字号:
/* tcp_in.c - tcp_in */#include <conf.h>#include <kernel.h>#include <network.h>#include <ports.h>/*------------------------------------------------------------------------ *  tcp_in - deliver an inbound TCP packet to the TCP process *------------------------------------------------------------------------ */inttcp_in(struct netif *pni, struct ep *pep){	/* drop instead of blocking on psend */ 	TcpInSegs++;	if (pcount(tcps_iport) >= TCPQLEN) {		freebuf(pep);		return SYSERR;	}	psend(tcps_iport, (int)pep);	return OK;}

⌨️ 快捷键说明

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