Linux Kernel
3.7.1
|
#include <linux/module.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <linux/atm.h>
#include <linux/atmdev.h>
#include <linux/capability.h>
#include <linux/ppp_defs.h>
#include <linux/ppp-ioctl.h>
#include <linux/ppp_channel.h>
#include <linux/atmppp.h>
#include "common.h"
Go to the source code of this file.
Data Structures | |
struct | pppoatm_vcc |
Macros | |
#define | pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__ |
#define | NONE_INFLIGHT -2 |
#define | BLOCKED 0 |
#define | LLC_LEN (4) |
#define | DROP_PACKET 1 |
Enumerations | |
enum | pppoatm_encaps { e_autodetect = PPPOATM_ENCAPS_AUTODETECT, e_vc = PPPOATM_ENCAPS_VC, e_llc = PPPOATM_ENCAPS_LLC } |
Functions | |
module_init (pppoatm_init) | |
module_exit (pppoatm_exit) | |
MODULE_AUTHOR ("Mitchell Blank Jr <[email protected]>") | |
MODULE_DESCRIPTION ("RFC2364 PPP over ATM/AAL5") | |
MODULE_LICENSE ("GPL") | |
enum pppoatm_encaps |
MODULE_AUTHOR | ( | "Mitchell Blank Jr <[email protected]>" | ) |
MODULE_DESCRIPTION | ( | "RFC2364 PPP over ATM/AAL5" | ) |
module_exit | ( | pppoatm_exit | ) |
module_init | ( | pppoatm_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |