9785c8a25f
FossilOrigin-Name: 0bbe4da84ffab94d8bcf71f8e153eeb1b6cd6b41d39dd3943a39d7fc291084f9
30 lines
274 B
C
30 lines
274 B
C
|
|
|
|
#include "module.h"
|
|
|
|
|
|
static int init()
|
|
{
|
|
// regn = cw_register_actions_cipwap_ac(&capwap_actions);
|
|
return 1;
|
|
}
|
|
|
|
|
|
|
|
static struct ac_module module = {
|
|
.name="Cipwap",
|
|
.init= init,
|
|
.detect_by_discovery = 0
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ac_module * mod_cipwap()
|
|
{
|
|
|
|
return &module;
|
|
}
|