2019-06-28 14:47:34 +00:00
|
|
|
// Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#ifndef _ESP_NETIF_NET_STACK_H_
|
|
|
|
#define _ESP_NETIF_NET_STACK_H_
|
|
|
|
|
2019-11-22 08:40:54 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-06-28 14:47:34 +00:00
|
|
|
//
|
|
|
|
// Network stack API: This ESP-NETIF API are supposed to be called only from internals of TCP/IP stack
|
|
|
|
//
|
|
|
|
|
2019-09-12 07:24:56 +00:00
|
|
|
/** @addtogroup ESP_NETIF_CONVERT
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2019-06-28 14:47:34 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns esp-netif handle
|
|
|
|
*
|
|
|
|
* @param[in] dev opaque ptr to network interface of specific TCP/IP stack
|
|
|
|
*
|
|
|
|
* @return handle to related esp-netif instance
|
|
|
|
*/
|
|
|
|
esp_netif_t* esp_netif_get_handle_from_netif_impl(void *dev);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns network stack specific implementation handle
|
|
|
|
*
|
|
|
|
* @param[in] esp_netif Handle to esp-netif instance
|
|
|
|
*
|
|
|
|
* @return handle to related network stack netif handle
|
|
|
|
*/
|
|
|
|
void* esp_netif_get_netif_impl(esp_netif_t *esp_netif);
|
|
|
|
|
2019-09-12 07:24:56 +00:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @addtogroup ESP_NETIF_DATA_IO_API
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Outputs packets from the TCP/IP stack to the media to be transmitted
|
|
|
|
*
|
|
|
|
* This function gets called from network stack to output packets to IO driver.
|
|
|
|
*
|
|
|
|
* @param[in] esp_netif Handle to esp-netif instance
|
|
|
|
* @param[in] data Data to be tranmitted
|
|
|
|
* @param[in] len Length of the data frame
|
|
|
|
*/
|
|
|
|
esp_err_t esp_netif_transmit(esp_netif_t *esp_netif, void* data, size_t len);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Free the rx buffer allocated by the media driver
|
|
|
|
*
|
|
|
|
* This function gets called from network stack when the rx buffer to be freed in IO driver context,
|
|
|
|
* i.e. to deallocate a buffer owned by io driver (when data packets were passed to higher levels
|
|
|
|
* to avoid copying)
|
|
|
|
*
|
|
|
|
* @param[in] esp_netif Handle to esp-netif instance
|
|
|
|
* @param[in] void* buffer: rx buffer pointer
|
|
|
|
*/
|
|
|
|
void esp_netif_free_rx_buffer(void *esp_netif, void* buffer);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2019-11-22 08:40:54 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-06-28 14:47:34 +00:00
|
|
|
#endif //_ESP_NETIF_NET_STACK_H_
|