Select one of the symbols to view example projects that use it.
 
Outline
#include <stddef.h>
#include "lwip/pbuf.h"
#include "esp_netif.h"
esp_pbuf_allocate(esp_netif_t *, void *, size_t, void *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_netif/include/lwip/esp_pbuf_ref.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /** * @file esp_pbuf reference interface file *//* ... */ #pragma once #include <stddef.h> #include "lwip/pbuf.h" #include "esp_netif.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Allocate custom pbuf containing pointer to a private l2-free function * * @note pbuf_free() will deallocate this custom pbuf and call the driver assigned free function *//* ... */ struct pbuf* esp_pbuf_allocate(esp_netif_t *esp_netif, void *buffer, size_t len, void *l2_buff); #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.