PMDK man page

librpma

NAME

rpma_conn_next_event - obtain a connection status

SYNOPSIS

      #include <librpma.h>

      struct rpma_conn;
      enum rpma_conn_event {
              RPMA_CONN_UNDEFINED = -1,
              RPMA_CONN_ESTABLISHED,
              RPMA_CONN_CLOSED,
              RPMA_CONN_LOST,
              RPMA_CONN_REJECTED,
      };

      int rpma_conn_next_event(struct rpma_conn *conn,
                      enum rpma_conn_event *event);

DESCRIPTION

rpma_conn_next_event() obtains the next event from the connection. Types of events:

RETURN VALUE

The rpma_conn_next_event() function returns 0 on success or a negative error code on failure.

ERRORS

rpma_conn_next_event() can fail with the following errors:

SEE ALSO

rpma_conn_req_connect(3), rpma_conn_disconnect(3), librpma(7) and https://pmem.io/rpma/