:orphan: .. index:: pair: struct; tarpc_out_arg .. _doxid-structtarpc__out__arg: struct tarpc_out_arg ==================== .. toctree:: :hidden: Overview ~~~~~~~~ Output arguments common for all RPC calls. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block struct tarpc_out_arg { // fields tarpc_int :ref:`_errno`; tarpc_bool :ref:`errno_changed`; char :ref:`err_str`; uint32_t :ref:`duration`; uint64_t :ref:`jobid`; tarpc_bool :ref:`unsolicited`; }; .. _details-structtarpc__out__arg: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Output arguments common for all RPC calls. It should be the first field of all routine-specific parameters, since implementation casts routine-specific parameters to this structure. Fields ------ .. index:: pair: variable; _errno .. _doxid-structtarpc__out__arg_1aba7b8817b3eadc686872f05aab2ce90a: .. ref-code-block:: cpp :class: doxyrest-title-code-block tarpc_int _errno *errno* of the operation from ``te_errno.h`` or ``rcf_rpc_defs.h`` .. index:: pair: variable; errno_changed .. _doxid-structtarpc__out__arg_1a15237a67effe06372cb3568eb9c16906: .. ref-code-block:: cpp :class: doxyrest-title-code-block tarpc_bool errno_changed Was errno modified by the call? .. index:: pair: variable; err_str .. _doxid-structtarpc__out__arg_1a70b37e69c7da29246f26c2953eded7e5: .. ref-code-block:: cpp :class: doxyrest-title-code-block char err_str String explaining the error. .. index:: pair: variable; duration .. _doxid-structtarpc__out__arg_1a47da58031077acb65d9a16fcbfad4e54: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t duration Duration of the called routine execution (in microseconds) .. index:: pair: variable; jobid .. _doxid-structtarpc__out__arg_1aa24c533f9d6deb127eb3d2d3debf530e: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint64_t jobid Identifier of an asynchronous operation. It should be passed as input when RPC client want to check status or wait for finish of the initiated operation. .. index:: pair: variable; unsolicited .. _doxid-structtarpc__out__arg_1aac02b57bfa734b34ba984d48a6c1b804: .. ref-code-block:: cpp :class: doxyrest-title-code-block tarpc_bool unsolicited Set to ``true`` for RPC responses that are # not paired to RPC requests. Currently only used for rpc_is_op_done notifications