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

📄 core.c

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

⌨️ 快捷键说明

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