rename mod_wtp and mod_ac to cw_Mod
FossilOrigin-Name: 4a8f9578a5fc384f0dad291114ac9470ea8561817e87760946277ec9ddd0db79
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
#ifndef __MOD_CAPWAP80211_H
|
||||
#define __MOD_CAPWAP80211_H
|
||||
|
||||
struct mod_ac *mod_capwap80211_ac();
|
||||
struct mod_wtp *mod_capwap80211_wtp();
|
||||
struct cw_Mod *mod_capwap80211_ac();
|
||||
struct cw_Mod *mod_capwap80211_wtp();
|
||||
|
||||
extern int capwap80211_register_actions_ac(struct cw_actiondef *def);
|
||||
extern int capwap80211_register_actions_wtp(struct cw_actiondef *def);
|
||||
|
@ -47,14 +47,14 @@ static int register_actions(struct cw_actiondef *actions, int mode)
|
||||
return capwap80211_register_actions_ac(actions);
|
||||
}
|
||||
|
||||
static struct mod_ac capwap80211_ac = {
|
||||
static struct cw_Mod capwap80211_ac = {
|
||||
.name = "capwap80211",
|
||||
.init = init,
|
||||
.detect = detect,
|
||||
.register_actions = register_actions
|
||||
};
|
||||
|
||||
struct mod_ac *mod_capwap80211_ac()
|
||||
struct cw_Mod *mod_capwap80211_ac()
|
||||
{
|
||||
return &capwap80211_ac;
|
||||
};
|
||||
|
@ -40,14 +40,14 @@ static int register_actions(struct cw_actiondef *actions,int mode)
|
||||
return capwap80211_register_actions_wtp(actions);
|
||||
}
|
||||
|
||||
static struct mod_ac capwap80211_wtp = {
|
||||
static struct cw_Mod capwap80211_wtp = {
|
||||
.name = "capwap80211",
|
||||
.init = init,
|
||||
.detect = detect,
|
||||
.register_actions = register_actions
|
||||
};
|
||||
|
||||
struct mod_ac *mod_capwap80211_wtp()
|
||||
struct cw_Mod *mod_capwap80211_wtp()
|
||||
{
|
||||
return &capwap80211_wtp;
|
||||
};
|
||||
|
Reference in New Issue
Block a user