| 492 | } |
| 493 | |
| 494 | ssize_t Sendmsg(int socket, const struct msghdr *message, int flags) |
| 495 | { |
| 496 | ssize_t rc = sendmsg(socket, message, flags); |
| 497 | if (rc < 0) |
| 498 | unix_error("sendmsg"); |
| 499 | return rc; |
| 500 | } |
| 501 | |
| 502 | int Socket(int domain, int type, int protocol) |
| 503 | { |
no test coverage detected