wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
netlink.h
Go to the documentation of this file.
1 
5 #ifndef NETLINK_H
6 #define NETLINK_H
7 
8 struct netlink_data;
9 struct ifinfomsg;
10 
12  void *ctx;
13  void (*newlink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf,
14  size_t len);
15  void (*dellink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf,
16  size_t len);
17 };
18 
19 struct netlink_data * netlink_init(struct netlink_config *cfg);
20 void netlink_deinit(struct netlink_data *netlink);
21 int netlink_send_oper_ifla(struct netlink_data *netlink, int ifindex,
22  int linkmode, int operstate);
23 
24 #endif /* NETLINK_H */
Definition: priv_netlink.h:89