![]() |
RPMsg-Lite User's Guide Rev. 5.1.4
NXP Semiconductors
|
This section describes the RPMsg Name Service component that allows: More...
This section describes the RPMsg Name Service component that allows:
Classes | |
struct | rpmsg_ns_callback_data |
Nameservice callback data structure. More... | |
struct | rpmsg_ns_handle |
Nameservice context structure. More... | |
struct | rpmsg_ns_static_context |
Static nameservice context container. More... | |
Macros | |
#define | RL_NS_EPT_ADDR |
Name service endpoint address. | |
Typedefs | |
typedef void(* | rpmsg_ns_new_ept_cb) (uint32_t new_ept, const char *new_ept_name, uint32_t flags, void *user_data) |
New endpoint NS callback function type. | |
Enumerations | |
enum | rpmsg_ns_flags { RL_NS_CREATE , RL_NS_DESTROY } |
Flags used during name service announcement. | |
Functions | |
rpmsg_ns_handle | rpmsg_ns_bind (struct rpmsg_lite_instance *rpmsg_lite_dev, rpmsg_ns_new_ept_cb app_cb, void *user_data) |
Registers application nameservice callback. | |
int32_t | rpmsg_ns_unbind (struct rpmsg_lite_instance *rpmsg_lite_dev, rpmsg_ns_handle handle) |
Unregisters application nameservice callback and cleans up. | |
int32_t | rpmsg_ns_announce (struct rpmsg_lite_instance *rpmsg_lite_dev, struct rpmsg_lite_endpoint *new_ept, const char *ept_name, uint32_t flags) |
Sends name service announcement to remote device. | |
struct rpmsg_ns_callback_data |
Nameservice callback data structure.
This structure holds the callback function and user data used for nameservice notifications.
Class Members | ||
---|---|---|
rpmsg_ns_new_ept_cb | cb | |
void * | user_data |
struct rpmsg_ns_context |
Nameservice context structure.
This structure contains the nameservice endpoint and callback data used for nameservice announcement handling.
Class Members | ||
---|---|---|
struct rpmsg_lite_endpoint * | ept | |
struct rpmsg_ns_callback_data * | cb_ctxt |
struct rpmsg_ns_static_context_container |
Static nameservice context container.
This structure provides memory for all nameservice contexts when static API is used (RL_USE_STATIC_API).
Class Members | ||
---|---|---|
struct rpmsg_lite_ept_static_context | ept_ctxt | |
struct rpmsg_ns_callback_data | cb_ctxt | |
struct rpmsg_ns_context | ns_ctxt |
rpmsg_ns_handle rpmsg_ns_bind | ( | struct rpmsg_lite_instance * | rpmsg_lite_dev, |
rpmsg_ns_new_ept_cb | app_cb, | ||
void * | user_data | ||
) |
Registers application nameservice callback.
rpmsg_lite_dev | RPMsg-Lite instance |
app_cb | Application nameservice callback |
user_data | Application nameservice callback data |
int32_t rpmsg_ns_unbind | ( | struct rpmsg_lite_instance * | rpmsg_lite_dev, |
rpmsg_ns_handle | handle | ||
) |
Unregisters application nameservice callback and cleans up.
rpmsg_lite_dev | RPMsg-Lite instance |
handle | NameService handle |
int32_t rpmsg_ns_announce | ( | struct rpmsg_lite_instance * | rpmsg_lite_dev, |
struct rpmsg_lite_endpoint * | new_ept, | ||
const char * | ept_name, | ||
uint32_t | flags | ||
) |
Sends name service announcement to remote device.
rpmsg_lite_dev | RPMsg-Lite instance |
new_ept | New endpoint to announce |
ept_name | Name for the announced endpoint |
flags | Channel creation/deletion flags |