diff --git a/src/cw/Makefile b/src/cw/Makefile index 7ea11197..469f04c4 100644 --- a/src/cw/Makefile +++ b/src/cw/Makefile @@ -16,7 +16,6 @@ CWSRC=\ cw_in_ac_name_with_priority.c\ cw_in_capwap_local_ipv4_address.c\ cw_in_capwap_local_ipv6_address.c\ - cw_in_check_cfg_update_req.c\ cw_in_check_disc_req.c\ cw_in_check_img_data_req_ac.c\ cw_in_check_img_data_req_wtp.c\ diff --git a/src/cw/cw_in_check_cfg_update_req.c b/src/cw/cw_in_check_cfg_update_req.c deleted file mode 100644 index 9ba6b703..00000000 --- a/src/cw/cw_in_check_cfg_update_req.c +++ /dev/null @@ -1,32 +0,0 @@ - - -#include "capwap.h" -#include "intavltree.h" -#include "dbg.h" -#include "log.h" - - -int cw_in_check_cfg_update_req(struct conn *conn, struct cw_action_in *a, uint8_t * data, - int len,struct sockaddr *from) -{ - - /*cw_action_in_t * mlist[60];*/ - - /* Check for mandatory elements */ -/* int n = cw_check_missing_mand(mlist,conn,a); - if (n) { - if ( conn->strict_capwap ){ - cw_dbg_missing_mand(DBG_MSG_ERR,conn,mlist,n,a); - conn->capwap_state=CAPWAP_STATE_JOIN; - return CW_RESULT_MISSING_MAND_ELEM; - } - cw_dbg_missing_mand(DBG_RFC,conn,mlist,n,a); - } -*/ - - /* set result code to ok and change to configure state */ - /*mbag_set_dword(conn->outgoing,CW_ITEM_RESULT_CODE,0);*/ - - - return 0; -}