Moved cipwap_items to mod/cipwap

FossilOrigin-Name: 99fc10818ae04e66f4dedac83cda3e057f2ecb35cb84a2759013404b8ec0e1d6
This commit is contained in:
7u83@mail.ru
2016-04-02 15:07:35 +00:00
parent 336f6124a6
commit e0ccdbd38f
11 changed files with 14 additions and 22 deletions

View File

@ -258,15 +258,6 @@ BSTROBJS= bstr_create.o \
FRAGOBJS=fragman.o
# cw_in_wtp_descriptor.o \
# capwap_80211_actions_wtp.o \
# capwap_80211_actions_ac.o \
# capwap_actions_ac.o \
#capwap_actions_wtp.o \
#cipwap_actions_ac.o \
#cipwap_actions_wtp.o \
CWACTION=action.o \
cw_in_generic.o \
cw_in_generic2.o \
@ -277,7 +268,6 @@ CWACTION=action.o \
cipwap_strings_elem.o \
capwap_strings_result.o\
capwap_strings_board.o \
cipwap_items.o\
cw_put_msg.o \
cw_put_mbag_item.o \
cw_put_local_ip_address.o \

View File

@ -1,22 +0,0 @@
#include "mbag.h"
#include "item.h"
#include "cipwap_items.h"
const char CIPWAP_ITEM_SSH_ENABLE[]="ssh_enable";
const char CIPWAP_ITEM_TELNET_ENABLE[]="telnet_enable";
const char CIPWAP_ITEM_AP_HASH_VALUE[]="ap_hash_value";
struct cw_itemdef cipwap_itemdefs[] = {
{CIPWAP_ITEM_TELNET_ENABLE,CW_ITEM_NONE,MBAG_BYTE},
{CIPWAP_ITEM_SSH_ENABLE,CW_ITEM_NONE,MBAG_BYTE},
{CIPWAP_ITEM_AP_HASH_VALUE,CW_ITEM_NONE,MBAG_BSTR16},
{CW_ITEM_NONE}
};

View File

@ -1,10 +0,0 @@
#ifndef __CIPWAP_ITEMS_H
#define __CIPWAP_ITEMS_H
extern const char CIPWAP_ITEM_SSH_ENABLE[];
extern const char CIPWAP_ITEM_TELNET_ENABLE[];
extern const char CIPWAP_ITEM_AP_HASH_VALUE[];
extern struct cw_itemdef cipwap_itemdefs[];
#endif