发布时间:2023-08-04 19:00:24
内核态程序点击(此处)折叠或打开#include <linux/init.h>#include <linux/module.h>#include <linux/types.h>#include <net/sock.h>#include <linux/netlink.h>#include <linux/kthread.h>.........【阅读全文】
发布时间:2023-08-04 18:56:44
用户态程序点击(此处)折叠或打开#include <stdio.h>#include <stdlib.h>#include <sys/socket.h>#include <string.h>#include <linux/netlink.h>#include <stdint.h>#inc.........【阅读全文】
发布时间:2023-08-04 18:53:11
1、用户态API1、创建socketInt skfd = socket(PF_NETLINK, SOCK_RAW, NL_IMP2)l 第一个参数必须是 AF_NETLINK 或 PF_NETLINK,在 Linux 中,它们俩实际为一个东西,它表示要使用netlink,l 第二个参数必须是SOCK_RAW或SOCK_DGRAM, 因为netlink是一个面向数据报的服.........【阅读全文】