Merge branch 'bugfix/esp_netif_ppp_event_data_v4.2' into 'release/v4.2'
esp-netif: Fix PPP netif event posting to include esp_netif data (v4.2) See merge request espressif/esp-idf!11868
This commit is contained in:
@@ -160,7 +160,7 @@ static void on_ppp_status_changed(ppp_pcb *pcb, int err_code, void *ctx)
|
||||
break;
|
||||
}
|
||||
if (obj->ppp_error_event_enabled) {
|
||||
err = esp_event_post(NETIF_PPP_STATUS, err_code, netif, sizeof(netif), 0);
|
||||
err = esp_event_post(NETIF_PPP_STATUS, err_code, &netif, sizeof(netif), 0);
|
||||
if (err != ESP_OK) {
|
||||
ESP_LOGE(TAG, "esp_event_post failed with code %d", err);
|
||||
}
|
||||
@@ -210,7 +210,7 @@ static void on_ppp_notify_phase(ppp_pcb *pcb, u8_t phase, void *ctx)
|
||||
esp_netif_t *netif = ctx;
|
||||
struct lwip_ppp_ctx *obj = netif->lwip_ppp_ctx;
|
||||
if (obj && obj->ppp_phase_event_enabled) {
|
||||
esp_err_t err = esp_event_post(NETIF_PPP_STATUS, NETIF_PP_PHASE_OFFSET + phase, netif, sizeof(netif), 0);
|
||||
esp_err_t err = esp_event_post(NETIF_PPP_STATUS, NETIF_PP_PHASE_OFFSET + phase, &netif, sizeof(netif), 0);
|
||||
if (err != ESP_OK) {
|
||||
ESP_LOGE(TAG, "esp_event_post failed with code %d", err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user