You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
337 B
18 lines
337 B
#include <sys/socket.h> |
|
#include <sys/types.h> |
|
#include <errno.h> |
|
|
|
ssize_t recvmsg(int socket, struct msghdr *message, int flags) |
|
{ |
|
return ENOTSUP; |
|
} |
|
|
|
ssize_t sendmsg(int socket, const struct msghdr *message, int flags) |
|
{ |
|
return ENOTSUP; |
|
} |
|
|
|
int socketpair(int domain, int type, int protocol, int socket_vector[2]) |
|
{ |
|
return ENOTSUP; |
|
}
|
|
|