Prase rssi from iwinfo

This commit is contained in:
PolynomialDivision 2017-10-19 15:37:09 +02:00
parent de516c68d3
commit 6ac15a5bac
8 changed files with 216 additions and 5 deletions

14
src/include/rssi.h Normal file
View file

@ -0,0 +1,14 @@
//
// Created by nick on 19.10.17.
//
#ifndef DAWN_RSSI_H
#define DAWN_RSSI_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int get_rssi_from_iwinfo(__uint8_t* client_addr);
#endif //DAWN_RSSI_H

View file

@ -28,4 +28,6 @@ char *hostapd_dir_glob;
int ubus_call_umdns();
int ubus_send_probe_via_network(struct probe_entry_s probe_entry);
#endif

View file

@ -9,5 +9,6 @@
int hex_to_bin(char ch);
int hwaddr_aton(const char *txt, uint8_t *addr);
int convert_mac(char* in, char* out);
#endif