Tarick Bedeir gave an example on how to establish an RDMA connection (using RDMA-CM) between two applications in the Reference:
http://www.hpcadvisorycouncil.com/pdf/rdma-read-and-write-with-ib-verbs.pdfabout building an RDMA-capable application with IB Verbs.
in the example code line look like this:
getaddrinfo(host, port, NULL, &addr)
rdma_resolve_addr(conn, NULL, addr->ai_addr, TIMEOUT_IN_MS)
I want a native IB application uses IB addressing(LID/GUID),so,is there any way to make the connctions use IB addressing instead of IP addressing?