diff --git a/network/netmanager/include/net_connection_type.h b/network/netmanager/include/net_connection_type.h index 32a8118c8f3764d7685bb8dd679de9938b309e79..4bf1a1754c9b0c9ccd6032fdd59cbdb9c14c361b 100644 --- a/network/netmanager/include/net_connection_type.h +++ b/network/netmanager/include/net_connection_type.h @@ -73,7 +73,12 @@ typedef enum NetConn_NetCap { * Portal * @since 12 */ - NETCONN_NET_CAPABILITY_PORTAL = 17 + NETCONN_NET_CAPABILITY_PORTAL = 17, + /** + * In checking network connectivity. + * @since 12 + */ + NETCONN_NET_CAPABILITY_CHECKING_CONNECTIVITY = 31 } NetConn_NetCap; /** @@ -85,6 +90,11 @@ typedef enum NetConn_NetCap { typedef enum NetConn_NetBearerType { /** Cellular network */ NETCONN_BEARER_CELLULAR = 0, + /** + * Bluetooth + * @since 12 + */ + NETCONN_BEARER_BLUETOOTH = 2, /** WIFI */ NETCONN_BEARER_WIFI = 1, /** Ethernet */