Cisco specifix mac operation.

FossilOrigin-Name: de50348dd2683244fc337c5dac12677f51eb37dcc7925057b6602d93ee6760f6
This commit is contained in:
7u83@mail.ru 2016-04-02 10:31:21 +00:00
parent 75ed9a93e7
commit 7d3e41c432
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#include "cw/cw.h"
#include "cw/cw_80211.h"
#include "cw/dbg.h"
int cisco80211_in_mac_operation(struct conn *conn, struct cw_action_in *a, uint8_t * data,
int len, struct sockaddr *from)
{
int rid = cw_get_byte(data);
mbag_t r = mbag_i_get_mbag(conn->radios,rid,NULL);
if (!r){
cw_dbg(DBG_ELEM_ERR,"Radio %d not defined. Can't set mac operation.");
return 0;
}
return cw_read_80211_mac_operation(data+3,r);
}