Lines Matching full:service

8  * @brief CoAP Service API
24 * @brief CoAP Service API
25 * @defgroup coap_service CoAP service API
33 * @name CoAP Service configuration flags
38 /** Start the service on boot. */
78 * @brief Define a static CoAP resource owned by the service named @p _service .
111 * @param _service Name of the associated service.
118 * @brief Define a CoAP service with static resources.
125 * number to use for the service. If the specified port number is zero, then an ephemeral port
129 * @param _name Name of the service.
130 * @param _host IP address or hostname associated with the service.
131 * @param[inout] _port Pointer to port associated with the service.
149 * @brief Count CoAP service static resources.
151 * @param _service Pointer to a service.
156 * @brief Check if service has the specified resource.
158 * @param _service Pointer to a service.
176 * @param _service Name of CoAP service
187 * @param _service Pointer to COAP service
197 * @brief Start the provided @p service .
199 * @note This function is suitable for a @p service defined with @ref COAP_SERVICE_DEFINE.
201 * @param service Pointer to CoAP service
203 * @retval -EALREADY in case of an already running service.
206 int coap_service_start(const struct coap_service *service);
209 * @brief Stop the provided @p service .
211 * @note This function is suitable for a @p service defined with @ref COAP_SERVICE_DEFINE.
213 * @param service Pointer to CoAP service
215 * @retval -EALREADY in case the service isn't running.
217 int coap_service_stop(const struct coap_service *service);
220 * @brief Query the provided @p service running state.
222 * @note This function is suitable for a @p service defined with @ref COAP_SERVICE_DEFINE.
224 * @param service Pointer to CoAP service
225 * @retval 1 if the service is running
226 * @retval 0 if the service is stopped
229 int coap_service_is_running(const struct coap_service *service);
232 * @brief Send a CoAP message from the provided @p service .
234 * @note This function is suitable for a @p service defined with @ref COAP_SERVICE_DEFINE.
236 * @param service Pointer to CoAP service
243 int coap_service_send(const struct coap_service *service, const struct coap_packet *cpkt,