More work on typeless

This commit is contained in:
2022-08-13 09:47:12 +02:00
parent add6ffa314
commit 370942ef7e
69 changed files with 1030 additions and 507 deletions

View File

@ -19,15 +19,18 @@
#include "cw/sock.h"
#include "cw/cw.h"
#include "cw/dbg.h"
#include "mod_capwap.h"
int capwap_in_wtp_descriptor(struct cw_ElemHandler *eh, struct cw_ElemHandlerParams *params, uint8_t * data,
int len)
{
stop();
int rc;
/*rc =cw_read_wtp_descriptor(params->remote_cfg, params->conn, eh, data, len, NULL);*/
rc =cw_read_wtp_descriptor(params->remote_cfg, NULL, eh, data, len, NULL);
rc =cw_read_wtp_descriptor(params->cfg, NULL, eh, data, len, NULL);
return rc;
}