Preparations to parse IEEE802.11 management packets

This commit is contained in:
vemax78
2014-03-26 21:35:52 +01:00
parent 4c466d68be
commit 7fd2d4357a
6 changed files with 60 additions and 2 deletions

View File

@ -0,0 +1,10 @@
#include "ac.h"
#include "ac_session.h"
#include "ieee80211.h"
/* */
void ac_ieee80211_data(struct ac_session_data_t* sessiondata, uint8_t* buffer, int length) {
ASSERT(sessiondata != NULL);
ASSERT(buffer != NULL);
ASSERT(length > 0);
}