#include <linux/module.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/inetdevice.h>
#include <linux/seq_file.h>
#include <linux/bootmem.h>
#include <linux/highmem.h>
#include <linux/swap.h>
#include <linux/slab.h>
#include <net/net_namespace.h>
#include <net/protocol.h>
#include <net/ip.h>
#include <net/ipv6.h>
#include <net/route.h>
#include <net/sctp/sctp.h>
#include <net/addrconf.h>
#include <net/inet_common.h>
#include <net/inet_ecn.h>
Go to the source code of this file.
|
| DEFINE_SPINLOCK (sctp_assocs_id_lock) |
|
int | sctp_copy_local_addr_list (struct net *net, struct sctp_bind_addr *bp, sctp_scope_t scope, gfp_t gfp, int copy_flags) |
|
void | sctp_addr_wq_timeout_handler (unsigned long arg) |
|
void | sctp_addr_wq_mgmt (struct net *net, struct sctp_sockaddr_entry *addr, int cmd) |
|
int | sctp_register_af (struct sctp_af *af) |
|
struct sctp_af * | sctp_get_af_specific (sa_family_t family) |
|
struct sctp_pf * | sctp_get_pf_specific (sa_family_t family) |
|
int | sctp_register_pf (struct sctp_pf *pf, sa_family_t family) |
|
SCTP_STATIC __init int | sctp_init (void) |
|
SCTP_STATIC __exit void | sctp_exit (void) |
|
| module_init (sctp_init) |
|
| module_exit (sctp_exit) |
|
| MODULE_ALIAS ("net-pf-"__stringify(PF_INET)"-proto-132") |
|
| MODULE_ALIAS ("net-pf-"__stringify(PF_INET6)"-proto-132") |
|
| MODULE_AUTHOR ("Linux Kernel SCTP developers <[email protected]>") |
|
| MODULE_DESCRIPTION ("Support for the SCTP protocol (RFC2960)") |
|
| module_param_named (no_checksums, sctp_checksum_disable, bool, 0644) |
|
| MODULE_PARM_DESC (no_checksums,"Disable checksums computing and verification") |
|
| MODULE_LICENSE ("GPL") |
|
#define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
MODULE_ALIAS |
( |
"net-pf-"__stringify(PF_INET)"-proto-132" |
| ) |
|
MODULE_ALIAS |
( |
"net-pf-"__stringify(PF_INET6)"-proto-132" |
| ) |
|
MODULE_PARM_DESC |
( |
no_checksums |
, |
|
|
"Disable checksums computing and verification" |
|
|
) |
| |
void sctp_addr_wq_timeout_handler |
( |
unsigned long |
arg | ) |
|