mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
11 lines
274 B
C
11 lines
274 B
C
#ifndef __DAWN_UBUS_H
|
|
#define __DAWN_UBUS_H
|
|
|
|
#include "datastorage.h"
|
|
|
|
#define MIN_PROBE_REQ 2 // TODO: Parse from config file...
|
|
|
|
int dawn_init_ubus(const char *ubus_socket, char *hostapd_dir);
|
|
int parse_to_probe_req(struct blob_attr *msg, probe_entry *prob_req);
|
|
|
|
#endif
|