pub unsafe extern "C" fn esp_netif_get_hostname(
    esp_netif: *mut esp_netif_t,
    hostname: *mut *const c_char
) -> esp_err_t
Expand description

@brief Get interface hostname.

@param[in] esp_netif Handle to esp-netif instance @param[out] hostname Returns a pointer to the hostname. May be NULL if no hostname is set. If set non-NULL, pointer remains valid (and string may change if the hostname changes).

@return - ESP_OK - success - ESP_ERR_ESP_NETIF_IF_NOT_READY - interface status error - ESP_ERR_ESP_NETIF_INVALID_PARAMS - parameter error