DOKK / manpages / debian 12 / librpma-dev / rpma_conn_req_new.3.en
rpma_conn_req_new(3) RPMA Programmer's Manual rpma_conn_req_new(3)

rpma_conn_req_new - create a new outgoing connection request object


#include <librpma.h>
struct rpma_peer;
struct rpma_conn_cfg;
struct rpma_conn_req;
int rpma_conn_req_new(struct rpma_peer *peer, const char *addr, const char *port,
const struct rpma_conn_cfg *cfg, struct rpma_conn_req **req_ptr);

rpma_conn_req_new() creates a new outgoing connection request object using reliable, connection-oriented and message-based (RDMA_PS_TCP) QP communication.

The rpma_conn_req_new() function returns 0 on success or a negative error code on failure. rpma_conn_req_new() does not set *req_ptr value on failure. If cfg is NULL, then the default values are used

see rpma_conn_cfg_new(3) for more details.

rpma_conn_req_new() can fail with the following errors:

rpma_conn_cfg_new(3), rpma_conn_req_connect(3), rpma_conn_req_delete(3), rpma_conn_req_recv(3), rpma_ep_next_conn_req(3), rpma_peer_new(3), librpma(7) and https://pmem.io/rpma/

10 January 2023 RPMA