net: import linux tap ioctl definitions
[qemu-kvm/markmc.git] / tap-linux.h
blobcd07ea8efbbe35a205e1a50c64284bb71bb8362c
1 /*
2 * Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #ifndef QEMU_TAP_H
17 #define QEMU_TAP_H
19 #include <linux/ioctl.h>
21 /* Ioctl defines */
22 #define TUNSETIFF _IOW('T', 202, int)
23 #define TUNSETSNDBUF _IOW('T', 212, int)
25 /* TUNSETIFF ifr flags */
26 #define IFF_TAP 0x0002
27 #define IFF_NO_PI 0x1000
29 #endif /* QEMU_TAP_H */