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

📄 rtems_showudpstat.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  $Id: rtems_showudpstat.c,v 1.2 1998/08/20 21:56:25 joel Exp $ */#include <sys/param.h>#include <sys/queue.h>#include <sys/systm.h>#include <sys/kernel.h>#include <sys/sysctl.h>#include <sys/proc.h>#include <sys/mbuf.h>#include <sys/socket.h>#include <net/if.h>#include <netinet/in.h>#include <netinet/in_systm.h>#include <netinet/ip.h>#include <netinet/ip_var.h>#include <netinet/udp.h>#include <netinet/udp_var.h>/* * Display UDP statistics * Don't lock the rest of the network tasks out while printing. * It's no big deal if the values change while being printed. */static voidshowudpstat (const char *name, unsigned long n){	if (n)		printf ("%35s%12lu\n", name, n);}voidrtems_bsdnet_show_udp_stats (void){	printf ("************ UDP Statistics ************\n");	showudpstat ("total input packets", udpstat.udps_ipackets);	showudpstat ("packet shorter than header", udpstat.udps_hdrops);	showudpstat ("checksum error", udpstat.udps_badsum);	showudpstat ("data length larger than packet", udpstat.udps_badlen);	showudpstat ("no socket on port", udpstat.udps_noport);	showudpstat ("of above, arrived as broadcast", udpstat.udps_noportbcast);	showudpstat ("not delivered, input socket full", udpstat.udps_fullsock);	showudpstat ("input packets missing pcb cache", udpstat.udpps_pcbcachemiss);	showudpstat ("input packets not for hashed pcb", udpstat.udpps_pcbhashmiss);	showudpstat ("total output packets", udpstat.udps_opackets);	printf ("\n");}

⌨️ 快捷键说明

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