2016-02-14 21:39:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
#include "module.h"
|
|
|
|
|
|
|
|
|
|
|
|
static int init()
|
|
|
|
{
|
2016-02-16 08:13:34 +01:00
|
|
|
// regn = cw_register_actions_cipwap_ac(&capwap_actions);
|
2016-02-14 21:39:36 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct ac_module module = {
|
|
|
|
.name="Cipwap",
|
|
|
|
.init= init,
|
|
|
|
.detect_by_discovery = 0
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct ac_module * mod_cipwap()
|
|
|
|
{
|
|
|
|
|
|
|
|
return &module;
|
|
|
|
}
|