Scroll to navigation

rpma_ep_shutdown(3) RPMA Programmer's Manual rpma_ep_shutdown(3)

NAME

rpma_ep_shutdown - stop listening and delete the endpoint

SYNOPSIS


#include <librpma.h>
struct rpma_ep;
int rpma_ep_shutdown(struct rpma_ep **ep_ptr);

DESCRIPTION

rpma_ep_shutdown() stops listening for incoming connections and deletes the endpoint. The connections established using the endpoint will still exist after deleting the endpoint.

RETURN VALUE

The rpma_ep_shutdown() function returns 0 on success or a negative error code on failure. rpma_ep_shutdown() does not set *ep_ptr value to NULL on failure.

ERRORS

rpma_ep_shutdown() can fail with the following errors:

  • RPMA_E_INVAL - ep_ptr is NULL
  • RPMA_E_PROVIDER - rdma_destroy_id(3) failed

SEE ALSO

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

29 May 2023 RPMA