arduino-esp32/tools/sdk/include/lwip/port/netif/wlanif.h

32 lines
496 B
C
Raw Normal View History

2016-10-06 13:21:30 +02:00
/*
* Copyright (c) 2010-2011 Espressif System
*
*/
#ifndef _WLAN_LWIP_IF_H_
#define _WLAN_LWIP_IF_H_
#include "esp_wifi.h"
2016-10-28 00:53:02 +02:00
#include "esp_wifi_internal.h"
2016-10-06 13:21:30 +02:00
#include "lwip/err.h"
#ifdef __cplusplus
extern "C" {
#endif
err_t wlanif_init(struct netif *netif);
void wlanif_input(struct netif *netif, void *buffer, u16_t len, void* eb);
wifi_interface_t wifi_get_interface(void *dev);
void netif_reg_addr_change_cb(void* cb);
#ifdef __cplusplus
}
#endif
#endif /* _WLAN_LWIP_IF_H_ */