#include <linux/capability.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/timer.h>
#include <linux/string.h>
#include <linux/sockios.h>
#include <linux/net.h>
#include <linux/slab.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 <linux/proc_fs.h>
#include <linux/stat.h>
#include <linux/netfilter.h>
#include <linux/sysctl.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#include <net/net_namespace.h>
#include <net/tcp_states.h>
#include <net/ip.h>
#include <net/arp.h>
Go to the source code of this file.
|
| HLIST_HEAD (ax25_list) |
|
| DEFINE_SPINLOCK (ax25_list_lock) |
|
void | ax25_cb_add (ax25_cb *ax25) |
|
struct sock * | ax25_find_listener (ax25_address *addr, int digi, struct net_device *dev, int type) |
|
struct sock * | ax25_get_socket (ax25_address *my_addr, ax25_address *dest_addr, int type) |
|
ax25_cb * | ax25_find_cb (ax25_address *src_addr, ax25_address *dest_addr, ax25_digi *digi, struct net_device *dev) |
|
| EXPORT_SYMBOL (ax25_find_cb) |
|
void | ax25_send_to_raw (ax25_address *addr, struct sk_buff *skb, int proto) |
|
void | ax25_destroy_socket (ax25_cb *) |
|
void | ax25_fillin_cb (ax25_cb *ax25, ax25_dev *ax25_dev) |
|
ax25_cb * | ax25_create_cb (void) |
|
struct sock * | ax25_make_new (struct sock *osk, struct ax25_dev *ax25_dev) |
|
| module_init (ax25_init) |
|
| MODULE_AUTHOR ("Jonathan Naylor G4KLX <[email protected]>") |
|
| MODULE_DESCRIPTION ("The amateur radio AX.25 link layer protocol") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_ALIAS_NETPROTO (PF_AX25) |
|
| module_exit (ax25_exit) |
|
MODULE_DESCRIPTION |
( |
"The amateur radio AX.25 link layer protocol" |
| ) |
|
module_exit |
( |
ax25_exit |
| ) |
|
module_init |
( |
ax25_init |
| ) |
|