qwf_net_IfType_e

Updated: April 19, 2023

Network interface types

Synopsis:

#include <qwf/qwf_net.h>
typedef enum {
    NET_TYPE_NONE = 0,
    NET_TYPE_CELLULAR = 1,
    NET_TYPE_WIRED = 2,
    NET_TYPE_WIFI = 3,
    NET_TYPE_VPN = 4,
    NET_TYPE_USB = 5,
    NET_TYPE_BT = 6
} qwf_net_IfType_e;

Data:

NET_TYPE_NONE
Interface is not initialized or its type is unknown
NET_TYPE_CELLULAR
Cellular network interface
NET_TYPE_WIRED
Wired Ethernet interface
NET_TYPE_WIFI
Wireless network interface
NET_TYPE_VPN
VPN tunnel
NET_TYPE_USB
Direct USB connection
NET_TYPE_BT
Bluetooth connection

Library:

qwf_interface