1RDMA_RESOLVE_ROUTE(3) Librdmacm Programmer's Manual RDMA_RESOLVE_ROUTE(3)
2
3
4
6 rdma_resolve_route - Resolve the route information needed to establish
7 a connection.
8
10 #include <rdma/rdma_cma.h>
11
12 int rdma_resolve_route (struct rdma_cm_id *id, int timeout_ms);
13
15 id RDMA identifier.
16
17 timeout_ms Time to wait for resolution to complete.
18
20 Resolves an RDMA route to the destination address in order to establish
21 a connection. The destination address must have already been resolved
22 by calling rdma_resolve_addr.
23
25 Returns 0 on success, or -1 on error. If an error occurs, errno will
26 be set to indicate the failure reason.
27
29 This is called on the client side of a connection after calling
30 rdma_resolve_addr, but before calling rdma_connect.
31
33 This call obtains a path record that is used by the connection.
34
36 rdma_resolve_addr(3), rdma_connect(3), rdma_get_cm_event(3)
37
38
39
40librdmacm 2007-10-31 RDMA_RESOLVE_ROUTE(3)