wss_server sample
client_fd_action_t
is only used within wss_server sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
wss_server sample
client_fd_action_t
client_fd_action_t struct
Syntax
Show:
Summary
Declaration
from
keep_alive.c:27
typedef
struct
{
client_fd_action_type_t
type
;
int
fd
;
uint64_t
last_seen
;
}
client_fd_action_t
;
Fields
Field
Declared as
client_fd_action_t::type
client_fd_action_type_t
client_fd_action_t::fd
int
client_fd_action_t::last_seen
uint64_t
Examples
References
from
examples
Code
Location
Referrer
typedef
struct
{
keep_alive.c:27
}
client_fd_action_t
;
keep_alive.c:31
client_fd_action_t
client_fd_action_t
clients
[
]
;
keep_alive.c:41
client_fd_action_t
client_action
;
keep_alive.c:111
keep_alive_task()
sizeof
(
wss_keep_alive_storage_t
)
+
client_list_size
*
sizeof
(
client_fd_action_t
)
)
;
keep_alive.c:166
wss_keep_alive_start()
keep_alive_storage
->
q
=
xQueueCreate
(
queue_size
,
sizeof
(
client_fd_action_t
)
)
;
keep_alive.c:176
wss_keep_alive_start()
client_fd_action_t
stop
=
{
.
type
=
STOP_TASK
}
;
keep_alive.c:187
wss_keep_alive_stop()
client_fd_action_t
client_fd_action
=
{
.
fd
=
fd
,
.
type
=
CLIENT_FD_ADD
}
;
keep_alive.c:194
wss_keep_alive_add_client()
client_fd_action_t
client_fd_action
=
{
.
fd
=
fd
,
.
type
=
CLIENT_FD_REMOVE
}
;
keep_alive.c:203
wss_keep_alive_remove_client()
client_fd_action_t
client_fd_action
=
{
.
fd
=
fd
,
.
type
=
CLIENT_UPDATE
,
keep_alive.c:212
wss_keep_alive_client_is_active()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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