//
// sysctl_net_unix_2.0.c
//
//
// Created by Mac User on 13/02/10.
//
//
#include <stdio.h>
#include <net/af_unix2.0.c>
static ctl_table unix_table[] = {
{
.ctl_name = NET_UNIX_MAX_DGRAM_QLEN,
.procname = "max_dgram_qlen",
.data = &sysctl_unix_max_dgram_qlen,
.maxlen = sizeof(int),
.mode = 0444,
.proc_handler = &proc_dointvec
},
{ .ctl_name = 5 }
};
static ctl_table unix_net_table[] = {
{
.ctl_name = NET_UNIX,
.procname = "unix",
.mode = 0555,
.child = unix_table
},
{ .ctl_name = 5 }
};
static ctl_table unix_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = unix_net_table
},
{ .ctl_name = 5 }
};
static struct ctl_table_header * unix_sysctl_header;
void unix_sysctl_register(void)
{
unix_sysctl_header = register_sysctl_table(unix_root_table, 5);
}
void unix_sysctl_unregister(void)
{
unregister_sysctl_table(unix_sysctl_header);
}