#[repr(C)]pub struct uct_cm_ep_client_connect_args {
pub field_mask: u64,
pub remote_data: *const uct_cm_remote_data_t,
pub status: ucs_status_t,
}Expand description
@ingroup UCT_CLIENT_SERVER @brief Arguments to the client’s connect callback.
Used with the client-server API on a connection manager.
Fields§
§field_mask: u64Mask of valid fields in this structure, using bits from @ref uct_cm_ep_client_connect_args_field. Fields not specified by this mask should not be accessed by the callback.
remote_data: *const uct_cm_remote_data_tRemote data from the server.
status: ucs_status_tIndicates the connection establishment response from the remote server: UCS_OK - the remote server accepted the connection request. UCS_ERR_REJECTED - the remote server rejected the connection request. UCS_ERR_CONNECTION_RESET - the server’s connection was reset during the connection establishment to the client. Otherwise - indicates an internal connection establishment error on the local (client) side.
Trait Implementations§
Source§impl Clone for uct_cm_ep_client_connect_args
impl Clone for uct_cm_ep_client_connect_args
Source§fn clone(&self) -> uct_cm_ep_client_connect_args
fn clone(&self) -> uct_cm_ep_client_connect_args
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more