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

📄 transport.c

📁 一个基于linux的TCP/IP协议栈的实现
💻 C
字号:
#include <linux/module.h>#include "dummy_ipv4.h"#include "log.h"MODULE_LICENSE("Dual BSD/GPL");static int __init mytransport_init(void){	PR_DEBUG("loading the module mytransport...\n");	PR_DEBUG("loading the module mytransport finished.\n");	return 0;}static void __exit mytransport_exit(void){}module_init(mytransport_init);module_exit(mytransport_exit);

⌨️ 快捷键说明

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