WTP cann connect to a WLC and wait for and dump config update requests. FossilOrigin-Name: 5b69ac4d9fd9f9a54395fe24de3456fff3bb76458d64c863d3cb7245dbda629c
13 lines
283 B
C
13 lines
283 B
C
|
|
|
|
#include "conn.h"
|
|
#include "capwap.h"
|
|
|
|
|
|
void conn_prepare_configuration_update_request(struct conn * conn)
|
|
{
|
|
struct cwmsg * cwmsg = &conn->req_msg;
|
|
uint8_t * buffer = conn->req_buffer;
|
|
cwmsg_init(cwmsg,buffer,CW_MSG_CONFIGURATION_UPDATE_REQUEST,conn_get_next_seqnum(conn),0);
|
|
}
|