Lines Matching refs:network
13 The network interface is a nexus that ties the network device drivers
14 and the upper part of the network stack together. All the sent and received
15 data is transferred via a network interface. The network interfaces cannot be
20 For Ethernet network, a macro called ``ETH_NET_DEVICE_INIT()`` should be used
23 network device driver source code.
25 The network interface can be turned ON by calling ``net_if_up()`` and OFF
26 by calling ``net_if_down()``. When the device is powered ON, the network
29 The network interfaces can be referenced either by a ``struct net_if *``
30 pointer or by a network interface index. The network interface can be
36 The IP address for network devices must be set for them to be connectable.
37 In a typical dynamic network environment, IP addresses are set automatically
42 The ``net_if_get_default()`` returns a *default* network interface. What
47 selecting the default network interface.
49 The transmitted and received network packets can be classified via a network
56 network technology supports promiscuous mode, then it is possible to receive
57 all the network packets that the network device driver is able to receive.
81 * The interface is notified by the driver/L2 that it joined/left a network.
88 The network association status is represented with :c:enumerator:`NET_IF_DORMANT`
94 detects that it connected to a Wi-Fi network, the dormant state should be set