mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-06 12:14:04 -05:00
Previously, hostapd only supported the case of EAPOL frames receiving from interfaces enslaved into bridge. This commit adds support for any Linux master (teaming, openvswitch, bonding, etc.) to be detected. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
24 lines
898 B
C
24 lines
898 B
C
/*
|
|
* Linux ioctl helper functions for driver wrappers
|
|
* Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef LINUX_IOCTL_H
|
|
#define LINUX_IOCTL_H
|
|
|
|
int linux_set_iface_flags(int sock, const char *ifname, int dev_up);
|
|
int linux_iface_up(int sock, const char *ifname);
|
|
int linux_get_ifhwaddr(int sock, const char *ifname, u8 *addr);
|
|
int linux_set_ifhwaddr(int sock, const char *ifname, const u8 *addr);
|
|
int linux_br_add(int sock, const char *brname);
|
|
int linux_br_del(int sock, const char *brname);
|
|
int linux_br_add_if(int sock, const char *brname, const char *ifname);
|
|
int linux_br_del_if(int sock, const char *brname, const char *ifname);
|
|
int linux_br_get(char *brname, const char *ifname);
|
|
int linux_master_get(char *master_ifname, const char *ifname);
|
|
|
|
#endif /* LINUX_IOCTL_H */
|