d6133e0434
FossilOrigin-Name: 3747732055809fd587f96cff65c389a0878a09a197947c1e68a76f605bdb44a0
45 lines
932 B
C
45 lines
932 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_generic_resp(struct conn *conn, struct cw_action_in *a, uint8_t * data,
|
|
int len,struct sockaddr *from)
|
|
{
|
|
|
|
/*
|
|
//Check if the message contains a result code and
|
|
if it indicates an errror //
|
|
mbag_item_t * result = mbag_get(conn->incomming,CW_ITEM_RESULT_CODE);
|
|
|
|
if (result ) {
|
|
if (!cw_result_is_ok(result->u2.dword)){
|
|
return result->u2.dword;
|
|
}
|
|
}
|
|
|
|
cw_action_in_t * mlist[60];
|
|
|
|
// 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);
|
|
errno=EAGAIN;
|
|
// return -1; /* CW_RESULT_MISSING_MAND_ELEM
|
|
}
|
|
if (n){
|
|
cw_dbg_missing_mand(DBG_RFC,conn,mlist,n,a);
|
|
}
|
|
|
|
// if we hava a result code, return it
|
|
if ( result ) {
|
|
return result->u2.dword;
|
|
}
|
|
*/
|
|
return 0;
|
|
}
|