Not needed anymore.

FossilOrigin-Name: 73935a1ef183002a925dcdc7d8d21f07fe2c692c267437a5e7448037954a3fbe
This commit is contained in:
7u83@mail.ru 2015-04-25 09:56:59 +00:00
parent 5795f96af7
commit f53f51be6c
1 changed files with 0 additions and 30 deletions

View File

@ -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);
}