#include <linux/module.h>
#include <linux/delay.h>
#include <linux/mISDNif.h>
#include <linux/mISDNhw.h>
#include <linux/mISDNdsp.h>
#include <linux/init.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <linux/workqueue.h>
#include <linux/kthread.h>
#include <linux/slab.h>
#include <net/sock.h>
#include "core.h"
#include "l1oip.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Andreas Eversberg") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param_array (type, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (codec, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (ip, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (port, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (remoteport, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (ondemand, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (limit, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (id, uint, NULL, S_IRUGO|S_IWUSR) |
|
| module_param (ulaw, uint, S_IRUGO|S_IWUSR) |
|
| module_param (debug, uint, S_IRUGO|S_IWUSR) |
|
| module_init (l1oip_init) |
|
| module_exit (l1oip_cleanup) |
|
#define L1OIP_VERSION 0 /* 0...3 */ |
MODULE_AUTHOR |
( |
"Andreas Eversberg" |
| ) |
|
module_exit |
( |
l1oip_cleanup |
| ) |
|
module_init |
( |
l1oip_init |
| ) |
|