22 #ifndef ETCPAL_NETINT_H_
23 #define ETCPAL_NETINT_H_
27 #include "etcpal/common.h"
28 #include "etcpal/inet.h"
91 size_t* netint_arr_size);
etcpal_error_t
A set of error codes that can be returned by library functions.
Definition: error.h:49
etcpal_iptype_t
Used to identify the type of IP address contained in a EtcPalIpAddr.
Definition: inet.h:53
bool etcpal_netint_is_up(unsigned int netint_index)
Determine whether a network interface is currently up and running.
Definition: netint.c:246
const EtcPalNetintInfo * etcpal_netint_get_interfaces(void)
Get a list of network interfaces on the system.
Definition: netint.c:84
etcpal_error_t etcpal_netint_refresh_interfaces(bool *list_changed)
Refresh the list of network interfaces.
Definition: netint.c:229
size_t etcpal_netint_get_num_interfaces(void)
Get the number of network interfaces present on the system.
Definition: netint.c:69
etcpal_error_t etcpal_netint_get_interfaces_by_index(unsigned int index, const EtcPalNetintInfo **netint_arr, size_t *netint_arr_size)
Get a set of network interface addresses that have the index specified.
Definition: netint.c:102
etcpal_error_t etcpal_netint_get_interface_for_dest(const EtcPalIpAddr *dest, unsigned int *netint_index)
Get the network interface that the system will choose when routing an IP packet to the specified dest...
Definition: netint.c:197
etcpal_error_t etcpal_netint_get_default_interface(etcpal_iptype_t type, unsigned int *netint_index)
Get information about the default network interface.
Definition: netint.c:159
An IP address.
Definition: inet.h:75
A description of a single address assigned to a network interface.
Definition: inet.h:355