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