0ec4826478
FossilOrigin-Name: 2e73b184e82e247388dd98ddcb7b4209a5063d58841d3df4600b71ce5732aad1
48 lines
943 B
C
48 lines
943 B
C
|
|
#include <errno.h>
|
|
|
|
#include "capwap.h"
|
|
#include "intavltree.h"
|
|
#include "dbg.h"
|
|
#include "log.h"
|
|
#include "capwap_items.h"
|
|
|
|
int cw_in_check_join_resp(struct conn *conn, struct cw_action_in *a, uint8_t * data,
|
|
int len,struct sockaddr *from)
|
|
{
|
|
|
|
cw_action_in_t * mlist[60];
|
|
|
|
mbag_item_t * jresult = mbag_get(conn->incomming,CW_ITEM_RESULT_CODE);
|
|
if (jresult ) {
|
|
if (!cw_rcok(jresult->dword)){
|
|
return jresult->dword;
|
|
}
|
|
}
|
|
|
|
|
|
/* Check for mandatory elements */
|
|
int n = cw_check_missing_mand(mlist,conn,a);
|
|
if (n && conn->strict_capwap) {
|
|
cw_dbg_missing_mand(DBG_MSG_ERR,conn,mlist,n,a);
|
|
conn->capwap_state=CW_STATE_JOIN;
|
|
errno=EAGAIN;
|
|
return -1; //CW_RESULT_MISSING_MAND_ELEM;
|
|
}
|
|
if (n){
|
|
cw_dbg_missing_mand(DBG_RFC,conn,mlist,n,a);
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( jresult ) {
|
|
return jresult->dword;
|
|
}
|
|
|
|
/* set result code to ok and change to configure state */
|
|
// mbag_set_dword(conn->outgoing,CW_ITEM_RESULT_CODE,0);
|
|
|
|
return 0;
|
|
}
|