:orphan: .. index:: pair: enum; rpc_msg_flags_mode .. _doxid-group__te__lib__rpc__socket_1ga4c0f9f0858ed1650c621a16a522f9852: enum rpc_msg_flags_mode ======================= Overview ~~~~~~~~ Flags set which determines behavior of **msg_flags** processing. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include enum rpc_msg_flags_mode { :ref:`RPC_MSG_FLAGS_SET_CHECK` = 0, :ref:`RPC_MSG_FLAGS_NO_CHECK` = 1, :ref:`RPC_MSG_FLAGS_NO_SET` = 2, }; .. _details-group__te__lib__rpc__socket_1ga4c0f9f0858ed1650c621a16a522f9852: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Flags set which determines behavior of **msg_flags** processing. In general default value is ``0`` in this case a random value is passed in msg_flags field and then returned value will be checked: * for recvmsg()-like functions returned value has to be zero unless the cases when some flags are really expected; * for sendmsg()-like functions the field must be unchanged. Enum Values ----------- .. index:: pair: enumvalue; RPC_MSG_FLAGS_SET_CHECK .. _doxid-group__te__lib__rpc__socket_1gga4c0f9f0858ed1650c621a16a522f9852aaf30d61ede5284758dc9f4abe3dcd87b: .. ref-code-block:: cpp :class: doxyrest-title-code-block RPC_MSG_FLAGS_SET_CHECK Set random flags and check returned value .. index:: pair: enumvalue; RPC_MSG_FLAGS_NO_CHECK .. _doxid-group__te__lib__rpc__socket_1gga4c0f9f0858ed1650c621a16a522f9852a29b80252987f2c9ac485f7cd16d3d6a3: .. ref-code-block:: cpp :class: doxyrest-title-code-block RPC_MSG_FLAGS_NO_CHECK Do not check returned flags value .. index:: pair: enumvalue; RPC_MSG_FLAGS_NO_SET .. _doxid-group__te__lib__rpc__socket_1gga4c0f9f0858ed1650c621a16a522f9852a64fbf90ac61966c2bc4b6887cca817d9: .. ref-code-block:: cpp :class: doxyrest-title-code-block RPC_MSG_FLAGS_NO_SET Do not overwrite flags with a random vlue