mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-26 09:18:24 -05:00
21 lines
580 B
C
21 lines
580 B
C
|
/*
|
||
|
* Linux ioctl helper functions for driver wrappers
|
||
|
* Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*
|
||
|
* Alternatively, this software may be distributed under the terms of BSD
|
||
|
* license.
|
||
|
*
|
||
|
* See README and COPYING for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef LINUX_IOCTL_H
|
||
|
#define LINUX_IOCTL_H
|
||
|
|
||
|
int linux_set_iface_flags(int sock, const char *ifname, int dev_up);
|
||
|
|
||
|
#endif /* LINUX_IOCTL_H */
|