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

📄 test.c

📁 一个基于linux的TCP/IP协议栈的实现
💻 C
字号:
/* test.c * linqianghe@163.com  * 2006-09-30 */#include "log.h"#include "dev.h"#include "test.h"#include <linux/module.h>MODULE_LICENSE("Dual BSD/GPL");static int __init mytest_init(void){	PR_DEBUG("loading the module myinet_test...\n");	arp_test();	PR_DEBUG("loading the module myinet_test finished.\n");	return 0;}static void __exit mytest_exit(void){}module_init( mytest_init);module_exit( mytest_exit);

⌨️ 快捷键说明

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