DAWN/src/include/test_storage.h
Ian Clowes 40ebf48bd1 ubus/datastorage: cleanup
- 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>
2022-06-11 19:49:53 +02:00

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