gluon-packages/net/respondd-module-wifi/src/ifaces.h

17 lines
256 B
C
Raw Normal View History

#pragma once
2018-08-17 18:19:11 +02:00
#include <stdbool.h>
struct iface_list {
int wiphy;
int ifx;
2018-08-17 18:19:11 +02:00
char mac_addr[20];
int type;
int frequency;
2018-08-17 18:19:11 +02:00
int chanwidth;
int txpower;
struct iface_list *next;
};
__attribute__((visibility("hidden"))) struct iface_list *get_ifaces();