2016-03-13 18:39:12 +01:00
|
|
|
/*
|
|
|
|
This file is part of actube.
|
|
|
|
|
|
|
|
actube is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
libcapwap is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cw.h"
|
|
|
|
#include "log.h"
|
2016-04-11 03:23:31 +02:00
|
|
|
#include "dbg.h"
|
2016-03-13 18:39:12 +01:00
|
|
|
|
|
|
|
int cw_put_mbag_item(uint8_t * dst, struct mbag_item *item)
|
|
|
|
{
|
2016-04-11 03:23:31 +02:00
|
|
|
if (item->type->put){
|
|
|
|
cw_dbg(DBG_X,"User put method to put ");
|
|
|
|
return item->type->put(item,dst);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-13 18:39:12 +01:00
|
|
|
if (MBAG_STR == item->type ){
|
|
|
|
return cw_put_data(dst, item->data, strlen((char *) item->data));
|
|
|
|
}
|
|
|
|
|
2016-03-28 10:48:25 +02:00
|
|
|
if (MBAG_DATA == item->type){
|
|
|
|
return cw_put_data(dst, item->data+1, *((uint8_t*)item->data));
|
|
|
|
}
|
|
|
|
|
2016-03-13 18:39:12 +01:00
|
|
|
if (MBAG_BYTE == item->type){
|
|
|
|
return cw_put_byte(dst, item->byte);
|
|
|
|
}
|
|
|
|
if (MBAG_WORD == item->type){
|
|
|
|
return cw_put_word(dst, item->word);
|
|
|
|
}
|
2018-02-18 14:17:45 +01:00
|
|
|
if (MTYPE_DWORD == item->type){
|
2016-03-13 18:39:12 +01:00
|
|
|
return cw_put_dword(dst, item->dword);
|
|
|
|
}
|
|
|
|
if (MBAG_BSTR == item->type) {
|
|
|
|
return cw_put_bstr(dst, item->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( MBAG_BSTR16 == item->type)
|
|
|
|
return cw_put_bstr16(dst,item->data);
|
|
|
|
|
|
|
|
if (MBAG_VENDORSTR == item->type)
|
|
|
|
{
|
|
|
|
int l=0;
|
|
|
|
l+=cw_put_dword(dst, bstrv_get_vendor_id(item->data));
|
|
|
|
l+=cw_put_data(dst+4, bstrv_data(item->data),bstrv_len(item->data));
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (MBAG_MBAG == item->type){
|
|
|
|
*((void**)dst)=item->data;
|
|
|
|
return sizeof(void *);
|
|
|
|
}
|
|
|
|
|
|
|
|
cw_log(LOG_ERR,"No method to put items of type %s",item->type->name);
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|