1 Star 1 Fork 1

6QHTSK/HUST-Linux-Firewall

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
proc.h 681 Bytes
一键复制 编辑 原始数据 按行查看 历史
6QHTSK 提交于 2022-09-30 16:16 . 2022-9-30 首次提交
//
// Created by csepsk on 2022/9/6.
//
#ifndef KERNEL_FIREWALL_PROC_H
#define KERNEL_FIREWALL_PROC_H
#include <linux/module.h> /* Needed by all modules */
#include <linux/kernel.h> /* Needed for KERN_INFO */
#include <linux/init.h> /* Needed for the macros */
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/vmalloc.h>
#include <asm/uaccess.h>
#include <linux/seq_file.h>
#include "logging.h"
#include "filter.h"
#include "udp_hook.h"
#include "icmp_hook.h"
#include "tcp_hook.h"
#include "nat.h"
// 分配内存大小4096B
#define PROCBUFF 4096
void register_proc_file(void);
void unregister_proc_file(void);
#endif //KERNEL_FIREWALL_PROC_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/aya6QHTSK/HUST-Linux-Firewall.git
[email protected]:aya6QHTSK/HUST-Linux-Firewall.git
aya6QHTSK
HUST-Linux-Firewall
HUST-Linux-Firewall
master

搜索帮助