diff --git a/src/capwap/cwsend_change_state_event_response.c b/src/capwap/cwsend_change_state_event_response.c deleted file mode 100644 index 987e341b..00000000 --- a/src/capwap/cwsend_change_state_event_response.c +++ /dev/null @@ -1,30 +0,0 @@ -/** - * @file - * @brief Implements change state event - */ - -#include "cwmsg.h" -#include "capwap.h" -#include "cw_log.h" -#include "sock.h" - -/** - * Send change state event response - * @param conn connection to use - * @param seqnum sequence number - * @param radioinfo radioinfo to us - */ - -void cwsend_change_state_event_response(struct conn * conn,int seqnum, struct radioinfo * radioinfo) -{ - cw_dbg(DBG_MSG,"Sending change state response to %s, seq = %d",sock_addr2str(&conn->addr),seqnum); - - struct cwmsg * cwmsg = &conn->resp_msg; - cwmsg_init(cwmsg,conn->resp_buffer,CW_MSG_CHANGE_STATE_EVENT_RESPONSE,seqnum,NULL); - - cwmsg_addelem_result_code(cwmsg,0); -// cwmsg_addelem_radio_operational_state(cwmsg,radioinfo); - - conn_send_response(conn,cwmsg,seqnum); -} -