ESP-IDF
TAG
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (1/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
TAG
TAG variable
Syntax
Show:
Summary
Declaration
from
transport_socks_proxy.c:20
static
const
char
*
TAG
=
"transport_proxy"
;
Examples
References
from
examples
Code
Location
Referrer
static
const
char
*
TAG
=
"transport_proxy"
;
transport_socks_proxy.c:20
SOCKS_ERROR_IF
(
proxy_connected
==
-
1
,
esp_transport_get_errno
(
socks_transport
->
parent
)
,
"Error connecting to proxy"
)
;
transport_socks_proxy.c:90
socks_connect()
SOCKS_ERROR_IF
(
remaining_time
<
0
,
SOCKS_TIMEOUT
,
"Connection Timeout"
)
;
transport_socks_proxy.c:94
socks_connect()
SOCKS_ERROR_IF
(
request
.
destination_ip
==
0
,
SOCKS_RESPONSE_TARGET_NOT_FOUND
,
"Failed to resolve target address"
)
;
transport_socks_proxy.c:102
socks_connect()
SOCKS_ERROR_IF
(
request_message
==
NULL
,
ESP_ERR_NO_MEM
,
"Failed to allocate request message"
)
;
transport_socks_proxy.c:113
socks_connect()
SOCKS_ERROR_IF
(
esp_transport_write
(
socks_transport
->
parent
,
request_message
,
request_message_len
,
remaining_time
)
<
0
,
esp_transport_get_errno
(
socks_transport
->
parent
)
,
"Failed to write the request message"
)
;
transport_socks_proxy.c:116
socks_connect()
SOCKS_ERROR_IF
(
remaining_time
<
0
,
SOCKS_TIMEOUT
,
"Connection Timeout"
)
;
transport_socks_proxy.c:120
socks_connect()
SOCKS_ERROR_IF
(
esp_transport_read
(
socks_transport
->
parent
,
proxy_response
,
SOCKS4_RESPONSE_SIZE
,
remaining_time
)
<
0
,
esp_transport_get_errno
(
socks_transport
->
parent
)
,
"Failed to get a response"
)
;
transport_socks_proxy.c:124
socks_connect()
SOCKS_ERROR_IF
(
response
->
code
!=
SOCKS_RESPONSE_SUCCESS
,
response
->
code
,
"Request Rejected with : %02x"
,
response
->
code
)
;
transport_socks_proxy.c:127
socks_connect()
ESP_LOGE
(
TAG
,
"Parent transport is invalid"
)
;
transport_socks_proxy.c:185
check_parameters()
ESP_LOGE
(
TAG
,
"Invalid Configuration"
)
;
transport_socks_proxy.c:190
check_parameters()
SOCKS_ERROR_IF
(
transport
==
NULL
,
ESP_ERR_NO_MEM
,
"Failed to allocate transport"
)
;
transport_socks_proxy.c:205
esp_transport_socks_proxy_init()
SOCKS_ERROR_IF
(
socks_context
==
NULL
,
ESP_ERR_NO_MEM
,
"Failed to allocate transport context"
)
;
transport_socks_proxy.c:208
esp_transport_socks_proxy_init()
SOCKS_ERROR_IF
(
socks_context
->
proxy_address
==
NULL
,
ESP_ERR_NO_MEM
,
"Failed to copy proxy address"
)
;
transport_socks_proxy.c:214
esp_transport_socks_proxy_init()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
TAG
is read by 3 functions:
All items filtered out
TAG
socks_connect()
check_parameters()
esp_transport_socks_proxy_init()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out