1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _DVBNET_H_
8 #define _DVBNET_H_
9 #include <linux/types.h>
10 struct dvb_net_if {
11   __u16 pid;
12   __u16 if_num;
13   __u8 feedtype;
14 #define DVB_NET_FEEDTYPE_MPE 0
15 #define DVB_NET_FEEDTYPE_ULE 1
16 };
17 #define NET_ADD_IF _IOWR('o', 52, struct dvb_net_if)
18 #define NET_REMOVE_IF _IO('o', 53)
19 #define NET_GET_IF _IOWR('o', 54, struct dvb_net_if)
20 struct __dvb_net_if_old {
21   __u16 pid;
22   __u16 if_num;
23 };
24 #define __NET_ADD_IF_OLD _IOWR('o', 52, struct __dvb_net_if_old)
25 #define __NET_GET_IF_OLD _IOWR('o', 54, struct __dvb_net_if_old)
26 #endif
27