2016-07-05 13:37:31 +00:00
|
|
|
.. -*- coding: utf-8; mode: rst -*-
|
|
|
|
|
|
|
|
.. _NET_REMOVE_IF:
|
|
|
|
|
|
|
|
*******************
|
|
|
|
ioctl NET_REMOVE_IF
|
|
|
|
*******************
|
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Name
|
2016-07-05 10:58:48 +00:00
|
|
|
====
|
2016-07-05 13:37:31 +00:00
|
|
|
|
2016-07-05 10:58:48 +00:00
|
|
|
NET_REMOVE_IF - Removes a network interface.
|
2016-07-05 13:37:31 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
|
|
|
|
Synopsis
|
2016-07-05 13:37:31 +00:00
|
|
|
========
|
|
|
|
|
2016-08-19 19:56:15 +00:00
|
|
|
.. c:function:: int ioctl( int fd, NET_REMOVE_IF, int ifnum )
|
|
|
|
:name: NET_REMOVE_IF
|
2016-07-05 13:37:31 +00:00
|
|
|
|
2016-07-05 10:58:48 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Arguments
|
2016-07-05 13:37:31 +00:00
|
|
|
=========
|
|
|
|
|
|
|
|
``fd``
|
|
|
|
File descriptor returned by :ref:`open() <frontend_f_open>`.
|
|
|
|
|
|
|
|
``net_if``
|
|
|
|
number of the interface to be removed
|
|
|
|
|
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Description
|
2016-07-05 13:37:31 +00:00
|
|
|
===========
|
|
|
|
|
|
|
|
The NET_REMOVE_IF ioctl deletes an interface previously created via
|
|
|
|
:ref:`NET_ADD_IF <net>`.
|
|
|
|
|
2016-07-05 10:58:48 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Return Value
|
2016-07-05 10:58:48 +00:00
|
|
|
============
|
2016-07-05 13:37:31 +00:00
|
|
|
|
|
|
|
On success 0 is returned, on error -1 and the ``errno`` variable is set
|
|
|
|
appropriately. The generic error codes are described at the
|
|
|
|
:ref:`Generic Error Codes <gen-errors>` chapter.
|