Returns an association ID for a specified socket address.
#include <sys/types.h> #include <sys/socket.h> #include <netinet/sctp.h> sctp_assoc_t sctp_getassocid(int s, struct sockaddr *addr);
The sctp_getassocid() call attempts to look up the specified socket address addr and find the respective association identification.
The call returns the association id upon success and 0 is returned upon failure.
[ENOENT] |
The address does not have an association setup to it. |
[EBADF] |
The argument s is not a valid descriptor. |
[ENOTSOCK] |
The argument s is not a socket. |
Versions |
---|
INtime 4.0 |