// SPDX-License-Identifier: GPL-2.0 /* -*- linux-c -*- * sysctl_net_x25.c: sysctl interface to net X.25 subsystem. * * Begun April 1, 1996, Mike Shaver. * Added /proc/sys/net/x25 directory entry (empty =) ). [MS] */ #include <linux/sysctl.h> #include <linux/skbuff.h> #include <linux/socket.h> #include <linux/netdevice.h> #include <linux/init.h> #include <net/x25.h> static int min_timer[] = …; static int max_timer[] = …; static struct ctl_table_header *x25_table_header; static struct ctl_table x25_table[] = …; int __init x25_register_sysctl(void) { … } void x25_unregister_sysctl(void) { … }