mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
- Remove the linked list of rejected auth / assoc as it was not used for any decision making - Rename auth_req to client_req as it is also used by association requests [cleanup commit message] Signed-off-by: Nick Hainke <vincent@systemli.org>
15 lines
268 B
C
15 lines
268 B
C
#ifndef __DAWN_TESTSTORAGE_H
|
|
#define __DAWN_TESTSTORAGE_H
|
|
|
|
#include "datastorage.h"
|
|
|
|
/*
|
|
** Contains declerations, etc needed across datastorage and its test harness,
|
|
** but not more widely.
|
|
*/
|
|
void ap_array_insert(ap *entry);
|
|
|
|
int ap_array_delete(ap *entry);
|
|
|
|
|
|
#endif
|