ESP-IDF
transport_socks_t::parent
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (1/5)...
Files
loading (2/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
transport_socks_t::parent
transport_socks_t::parent field
Syntax
Show:
Summary
Declaration
from
transport_socks_proxy.c:41
esp_transport_handle_t
parent
;
Examples
References
from
examples
Code
Location
Referrer
esp_transport_handle_t
parent
;
transport_socks_proxy.c:41
int
proxy_connected
=
esp_transport_connect
(
socks_transport
->
parent
,
socks_transport
->
proxy_address
,
socks_transport
->
proxy_port
,
remaining_time
)
;
transport_socks_proxy.c:89
socks_connect()
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
(
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
(
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()
return
esp_transport_close
(
socks_transport
->
parent
)
;
transport_socks_proxy.c:139
socks_close()
return
esp_transport_write
(
socks_transport
->
parent
,
buffer
,
len
,
timeout_ms
)
;
transport_socks_proxy.c:146
socks_write()
return
esp_transport_read
(
socks_transport
->
parent
,
buffer
,
len
,
timeout_ms
)
;
transport_socks_proxy.c:152
socks_read()
return
esp_transport_poll_read
(
socks_transport
->
parent
,
timeout_ms
)
;
transport_socks_proxy.c:158
socks_poll_read()
return
esp_transport_poll_write
(
socks_transport
->
parent
,
timeout_ms
)
;
transport_socks_proxy.c:164
socks_poll_write()
socks_context
->
parent
=
parent_handle
;
transport_socks_proxy.c:212
esp_transport_socks_proxy_init()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
transport_socks_t::parent
is written by 1 function and is read by 6 functions:
esp_transport_socks_proxy_init()
All items filtered out
transport_socks_t::parent
socks_connect()
socks_close()
socks_write()
socks_read()
socks_poll_read()
socks_poll_write()
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