Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_transport_internal.h"
TAG
esp_transport_utils_ms_to_timeval(int, struct timeval *)
esp_transport_init_foundation_transport()
esp_transport_destroy_foundation_transport(esp_foundation_transport_t *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/tcp_transport/transport_internal.c
 
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
30
31
32
33
34
35
36
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "esp_transport_internal.h" static const char *TAG = "transport"; struct timeval* esp_transport_utils_ms_to_timeval(int timeout_ms, struct timeval *tv) { if (timeout_ms == -1) { return NULL; }{...} tv->tv_sec = timeout_ms / 1000; tv->tv_usec = (timeout_ms - (tv->tv_sec * 1000)) * 1000; return tv; }{ ... } esp_foundation_transport_t * esp_transport_init_foundation_transport(void) { esp_foundation_transport_t *foundation = calloc(1, sizeof(esp_foundation_transport_t)); ESP_TRANSPORT_MEM_CHECK(TAG, foundation, return NULL); foundation->error_handle = calloc(1, sizeof(struct esp_transport_error_storage)); ESP_TRANSPORT_MEM_CHECK(TAG, foundation->error_handle, free(foundation); return NULL); return foundation; }{ ... } void esp_transport_destroy_foundation_transport(esp_foundation_transport_t *foundation) { if (foundation) { free(foundation->error_handle); }{...} free(foundation); }{ ... }
Details