2020-08-26 09:03:09 +02:00
|
|
|
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
|
2020-09-24 16:56:00 +02:00
|
|
|
.. c:namespace:: DTV.net
|
2018-08-30 10:15:26 -04:00
|
|
|
|
2016-07-05 10:37:31 -03:00
|
|
|
.. _NET_ADD_IF:
|
|
|
|
|
|
|
|
|
|
****************
|
|
|
|
|
ioctl NET_ADD_IF
|
|
|
|
|
****************
|
|
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Name
|
2016-07-05 07:58:48 -03:00
|
|
|
====
|
2016-07-05 10:37:31 -03:00
|
|
|
|
2016-07-05 07:58:48 -03:00
|
|
|
NET_ADD_IF - Creates a new network interface for a given Packet ID.
|
2016-07-05 10:37:31 -03:00
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Synopsis
|
2016-07-05 10:37:31 -03:00
|
|
|
========
|
|
|
|
|
|
2020-09-24 16:56:00 +02:00
|
|
|
.. c:macro:: NET_ADD_IF
|
2016-07-05 10:37:31 -03:00
|
|
|
|
2020-09-24 16:56:00 +02:00
|
|
|
``int ioctl(int fd, NET_ADD_IF, struct dvb_net_if *net_if)``
|
2016-07-05 07:58:48 -03:00
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Arguments
|
2016-07-05 10:37:31 -03:00
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
``fd``
|
2020-09-24 16:56:00 +02:00
|
|
|
File descriptor returned by :c:func:`open()`.
|
2016-07-05 10:37:31 -03:00
|
|
|
|
|
|
|
|
``net_if``
|
2016-08-29 17:37:59 -03:00
|
|
|
pointer to struct :c:type:`dvb_net_if`
|
2016-07-05 10:37:31 -03:00
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Description
|
2016-07-05 10:37:31 -03:00
|
|
|
===========
|
|
|
|
|
|
|
|
|
|
The NET_ADD_IF ioctl system call selects the Packet ID (PID) that
|
|
|
|
|
contains a TCP/IP traffic, the type of encapsulation to be used (MPE or
|
|
|
|
|
ULE) and the interface number for the new interface to be created. When
|
|
|
|
|
the system call successfully returns, a new virtual network interface is
|
|
|
|
|
created.
|
|
|
|
|
|
2016-08-29 17:37:59 -03:00
|
|
|
The struct :c:type:`dvb_net_if`::ifnum field will be
|
2016-07-05 10:37:31 -03:00
|
|
|
filled with the number of the created interface.
|
|
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Return Value
|
2016-07-05 07:58:48 -03:00
|
|
|
============
|
2016-07-05 10:37:31 -03:00
|
|
|
|
2017-09-01 12:15:43 -04:00
|
|
|
On success 0 is returned, and :c:type:`ca_slot_info` is filled.
|
|
|
|
|
|
|
|
|
|
On error -1 is returned, and the ``errno`` variable is set
|
|
|
|
|
appropriately.
|
|
|
|
|
|
|
|
|
|
The generic error codes are described at the
|
2016-07-05 10:37:31 -03:00
|
|
|
:ref:`Generic Error Codes <gen-errors>` chapter.
|