1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

UDP improvements

This is related to 45ddebf5d1. I forgot to
add it to the commit.
This commit is contained in:
Dennis Potter 2018-07-25 18:53:11 +02:00
parent 45ddebf5d1
commit c9871bfebb

View file

@ -90,9 +90,12 @@ struct infiniband {
int buffer_subtraction;
/* Unrealiable connectionless data */
struct rdma_ud_param ud;
void *grh_ptr;
struct ibv_mr *grh_mr;
struct ud_s {
struct rdma_ud_param ud;
struct ibv_ah *ah;
void *grh_ptr;
struct ibv_mr *grh_mr;
} ud;
} conn;