:orphan: .. index:: pair: group; Command Handler: Reboot and shutdown support .. _doxid-group__rcf__ch__reboot: Command Handler: Reboot and shutdown support ============================================ .. toctree:: :hidden: Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // global functions int :ref:`rcf_ch_shutdown`(struct rcf_comm_connection* handle, char* cbuf, size_t buflen, size_t answer_plen); int :ref:`rcf_ch_reboot`(struct rcf_comm_connection* handle, char* cbuf, size_t buflen, size_t answer_plen, const uint8_t* ba, size_t cmdlen, const char* params); .. _details-group__rcf__ch__reboot: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Global Functions ---------------- .. index:: pair: function; rcf_ch_shutdown .. _doxid-group__rcf__ch__reboot_1gab8c34cc6e01339b4832812e08d2f8a42: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rcf_ch_shutdown(struct rcf_comm_connection* handle, char* cbuf, size_t buflen, size_t answer_plen) Shutdown the Test Agent (answer should be sent before shutdown). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - connection handle * - cbuf - command buffer * - buflen - length of the command buffer * - answer_plen - number of bytes in the command buffer to be copied to the answer * - 0 - command is supported * - -1 - command is not supported .. rubric:: Returns: Indication of command support .. index:: pair: function; rcf_ch_reboot .. _doxid-group__rcf__ch__reboot_1gaac9a7de6b3f7eddc5b0251281974ef25: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rcf_ch_reboot(struct rcf_comm_connection* handle, char* cbuf, size_t buflen, size_t answer_plen, const uint8_t* ba, size_t cmdlen, const char* params) Reboot the Test Agent or NUT served by it (answer should be sent before reboot). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - connection handle * - cbuf - command buffer * - buflen - length of the command buffer * - answer_plen - number of bytes in the command buffer to be copied to the answer * - ba - pointer to location of binary attachment in the command buffer or NULL if no binary attachment is provided * - cmdlen - full length of the command including binary attachment * - params - reboot parameters * - 0 - command is supported * - -1 - command is not supported .. rubric:: Returns: Indication of command support