mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
bb835d7baf
* Add support for ICMPv6 RIO handling for ESP32 * Update ESP-IDF release to v4.4 for route hook support
19 lines
288 B
C
19 lines
288 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "esp_err.h"
|
|
#include "esp_netif.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
esp_err_t esp_route_hook_init(esp_netif_t *netif);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|