blob: 5b70258889fb53132a95932fc4455725f76bc937 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
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 */
Ben Cheng655a7c02013-10-16 16:09:24 -07007#ifndef _DVBNET_H_
8#define _DVBNET_H_
9#include <linux/types.h>
10struct dvb_net_if {
Tao Baod7db5942015-01-28 10:07:51 -080011 __u16 pid;
12 __u16 if_num;
13 __u8 feedtype;
Ben Cheng655a7c02013-10-16 16:09:24 -070014#define DVB_NET_FEEDTYPE_MPE 0
Ben Cheng655a7c02013-10-16 16:09:24 -070015#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)
Ben Cheng655a7c02013-10-16 16:09:24 -070019#define NET_GET_IF _IOWR('o', 54, struct dvb_net_if)
20struct __dvb_net_if_old {
Tao Baod7db5942015-01-28 10:07:51 -080021 __u16 pid;
22 __u16 if_num;
Ben Cheng655a7c02013-10-16 16:09:24 -070023};
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)
Nick Kralevicha67e4de2013-01-14 11:28:26 -080026#endif