brintos

brintos / linux-shallow public Read only

0
0
Text · 1.3 KiB · 020a023 Raw
42 lines · plain
1.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later2 3.. _net:4 5######################6Digital TV Network API7######################8 9The Digital TV net device controls the mapping of data packages that are part10of a transport stream to be mapped into a virtual network interface,11visible through the standard Linux network protocol stack.12 13Currently, two encapsulations are supported:14 15-  `Multi Protocol Encapsulation (MPE) <http://en.wikipedia.org/wiki/Multiprotocol_Encapsulation>`__16 17-  `Ultra Lightweight Encapsulation (ULE) <http://en.wikipedia.org/wiki/Unidirectional_Lightweight_Encapsulation>`__18 19In order to create the Linux virtual network interfaces, an application20needs to tell to the Kernel what are the PIDs and the encapsulation21types that are present on the transport stream. This is done through22``/dev/dvb/adapter?/net?`` device node. The data will be available via23virtual ``dvb?_?`` network interfaces, and will be controlled/routed via24the standard ip tools (like ip, route, netstat, ifconfig, etc).25 26Data types and ioctl definitions are defined via ``linux/dvb/net.h``27header.28 29 30.. _net_fcalls:31 32Digital TV net Function Calls33#############################34 35.. toctree::36    :maxdepth: 137 38    net-types39    net-add-if40    net-remove-if41    net-get-if42