mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
Prase rssi from iwinfo
This commit is contained in:
parent
de516c68d3
commit
6ac15a5bac
8 changed files with 216 additions and 5 deletions
14
src/include/rssi.h
Normal file
14
src/include/rssi.h
Normal 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
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue