2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
2016-03-03 19:51:42 +01:00
|
|
|
#include "cw/conn.h"
|
2016-03-08 20:06:42 +01:00
|
|
|
//#include "cw/capwap_80211.h"
|
2016-03-03 19:51:42 +01:00
|
|
|
#include "cw/log.h"
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
#include "wtp_conf.h"
|
|
|
|
#include "wtp_interface.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-05 14:12:49 +01:00
|
|
|
bstr_t get_base_rmac()
|
2014-07-11 22:12:11 +02:00
|
|
|
{
|
|
|
|
|
2016-03-13 18:55:42 +01:00
|
|
|
// static uint8_t rm[8] = { 0x00, 0x4a, 0x99, 0x02, 0xfa, 0xc0 };
|
|
|
|
// static uint8_t rm[8]={0x00,0x3a,0x99,0x02,0xfa,0xc0};
|
2016-04-01 07:37:16 +02:00
|
|
|
static uint8_t rm[8]={0x00,0x3a,0x99,0x04,0xfa,0xc0};
|
2016-03-13 18:55:42 +01:00
|
|
|
|
2016-03-05 14:12:49 +01:00
|
|
|
return bstr_create(rm, 6);
|
2015-03-23 07:48:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-06 16:48:49 +01:00
|
|
|
uint8_t get_ecn_support()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|