restful_server sample
mdns_action_t
is only used within restful_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
restful_server sample
mdns_action_t
mdns_action_t struct
Syntax
Show:
Summary
Declaration
from
mdns_private.h:423
typedef
struct
{
mdns_action_type_t
type
;
union
{
struct
{
char
*
hostname
;
}
hostname_set
;
char
*
instance
;
struct
{
mdns_if_t
interface
;
mdns_event_actions_t
event_action
;
}
sys_event
;
struct
{
mdns_search_once_t
*
search
;
}
search_add
;
struct
{
mdns_tx_packet_t
*
packet
;
}
tx_handle
;
struct
{
mdns_rx_packet_t
*
packet
;
}
rx_handle
;
struct
{
const
char
*
hostname
;
mdns_ip_addr_t
*
address_list
;
}
delegate_hostname
;
struct
{
mdns_browse_t
*
browse
;
}
browse_add
;
struct
{
mdns_browse_sync_t
*
browse_sync
;
}
browse_sync
;
}
data
;
}
mdns_action_t
;
Fields
Field
Declared as
mdns_action_t::data
union
{
struct
{
char
*
hostname
;
}
hostname_set
;
char
*
instance
;
struct
{
mdns_if_t
interface
;
mdns_event_actions_t
event_action
;
}
sys_event
;
struct
{
mdns_search_once_t
*
search
;
}
search_add
;
struct
{
mdns_tx_packet_t
*
packet
;
}
tx_handle
;
struct
{
mdns_rx_packet_t
*
packet
;
}
rx_handle
;
struct
{
const
char
*
hostname
;
mdns_ip_addr_t
*
address_list
;
}
delegate_hostname
;
struct
{
mdns_browse_t
*
browse
;
}
browse_add
;
struct
{
mdns_browse_sync_t
*
browse_sync
;
}
browse_sync
;
}
mdns_action_t::type
mdns_action_type_t
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
{
mdns_private.h:423
}
mdns_action_t
;
mdns_private.h:454
mdns_action_t
*
action
=
NULL
;
mdns.c:356
_mdns_send_rx_action()
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:358
_mdns_send_rx_action()
static
void
_mdns_free_action
(
mdns_action_t
*
action
)
mdns.c:5182
_mdns_free_action()
_mdns_free_action()::action
static
void
_mdns_execute_action
(
mdns_action_t
*
action
)
mdns.c:5229
_mdns_execute_action()
_mdns_execute_action()::action
mdns_action_t
*
action
=
NULL
;
mdns.c:5318
_mdns_send_search_action()
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:5320
_mdns_send_search_action()
mdns_action_t
*
action
=
NULL
;
mdns.c:5346
_mdns_scheduler_run()
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:5357
_mdns_scheduler_run()
mdns_action_t
*
a
=
NULL
;
mdns.c:5413
_mdns_service_task()
mdns_action_t
action
;
mdns.c:5535
_mdns_service_task_stop()
mdns_action_t
*
a
=
&
action
;
mdns.c:5536
_mdns_service_task_stop()
mdns_action_t
*
action
=
(
mdns_action_t
*
)
mdns_mem_calloc
(
1
,
sizeof
(
mdns_action_t
)
)
;
mdns.c:5557
mdns_post_custom_action_tcpip_if()
_mdns_server
->
action_queue
=
xQueueCreate
(
MDNS_ACTION_QUEUE_LEN
,
sizeof
(
mdns_action_t
*
)
)
;
mdns.c:5677
mdns_init()
mdns_action_t
*
c
;
mdns.c:5779
mdns_free()
mdns_action_t
*
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:5822
mdns_hostname_set()
mdns_action_t
*
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:5870
mdns_delegate_hostname_add()
mdns_action_t
*
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:5901
mdns_delegate_hostname_remove()
mdns_action_t
*
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:5930
mdns_delegate_hostname_set_address()
mdns_action_t
*
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:5969
mdns_instance_name_set()
mdns_action_t
*
action
=
NULL
;
mdns.c:7251
_mdns_sync_browse_action()
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:7253
_mdns_sync_browse_action()
mdns_action_t
*
action
=
NULL
;
mdns.c:7273
_mdns_send_browse_action()
action
=
(
mdns_action_t
*
)
mdns_mem_malloc
(
sizeof
(
mdns_action_t
)
)
;
mdns.c:7275
_mdns_send_browse_action()
}
mdns_action_t
;
mdns_private.h:454
mdns_action_t
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
Instance
Scope
Location
Project
_mdns_free_action()::action
_mdns_free_action()
mdns.c:5182
_mdns_execute_action()::action
_mdns_execute_action()
mdns.c:5229
Lifecycle
from
examples
All items filtered out
All items filtered out