#include <linux/capability.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/slab.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/spinlock.h>
#include <linux/timer.h>
#include <linux/string.h>
#include <linux/sockios.h>
#include <linux/net.h>
#include <linux/stat.h>
#include <net/net_namespace.h>
#include <net/ax25.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <linux/if_arp.h>
#include <linux/skbuff.h>
#include <net/sock.h>
#include <asm/uaccess.h>
#include <linux/fcntl.h>
#include <linux/termios.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/notifier.h>
#include <net/rose.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <net/tcp_states.h>
#include <net/ip.h>
#include <net/arp.h>
Go to the source code of this file.
|
char * | rose2asc (char *buf, const rose_address *addr) |
|
int | rosecmp (rose_address *addr1, rose_address *addr2) |
|
int | rosecmpm (rose_address *addr1, rose_address *addr2, unsigned short mask) |
|
void | rose_kill_by_neigh (struct rose_neigh *neigh) |
|
struct sock * | rose_find_socket (unsigned int lci, struct rose_neigh *neigh) |
|
unsigned int | rose_new_lci (struct rose_neigh *neigh) |
|
void | rose_destroy_socket (struct sock *) |
|
int | rose_rx_call_request (struct sk_buff *skb, struct net_device *dev, struct rose_neigh *neigh, unsigned int lci) |
|
| module_init (rose_proto_init) |
|
| module_param (rose_ndevs, int, 0) |
|
| MODULE_PARM_DESC (rose_ndevs,"number of ROSE devices") |
|
| MODULE_AUTHOR ("Jonathan Naylor G4KLX <[email protected]>") |
|
| MODULE_DESCRIPTION ("The amateur radio ROSE network layer protocol") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_ALIAS_NETPROTO (PF_ROSE) |
|
| module_exit (rose_exit) |
|
MODULE_DESCRIPTION |
( |
"The amateur radio ROSE network layer protocol" |
| ) |
|
module_exit |
( |
rose_exit |
| ) |
|
module_init |
( |
rose_proto_init |
| ) |
|
module_param |
( |
rose_ndevs |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
rose_ndevs |
, |
|
|
"number of ROSE devices" |
|
|
) |
| |