- 论坛徽章:
- 0
|
代码很简单,如下:
#include <linux/config.h>
#include <linux/module.h>
#include <linux/netlink.h>
#include <net/sock.h>
static void recv_handler(struct sock * sk, int length)
{
}
static int __init netlink_exam_init(void)
{
/* netlink_exam_sock = netlink_kernel_create(NETLINK_GENERIC, 0, recv_handler, THIS_MODULE);
if (!netlink_exam_sock)
{
printk("[TEST]Fail to create netlink socket.\n");
return 1;
}
*/
return 0;
}
static void __exit netlink_exam_exit(void)
{
/*
if(netlink_exam_sock)
{
sock_release(netlink_exam_sock->sk_socket);
printk("[TEST]netlink_exam_exit\n");
}
*/
}
module_init(netlink_exam_init);
module_exit(netlink_exam_exit);
MODULE_LICENSE("GPL");
请问路过的大拿们,这个咋编译,第一次搞,呵呵 |
|