Lines Matching refs:recvfrom
321 #### `recvfrom()`, `recvmsg()`, `recv()` & `read()`: receive an MCTP message
323 An MCTP message can be received by an application using one of the `recvfrom()`,
324 `recvmsg()`, `recv()` or `read()` system calls. Using `recvfrom()` as the
335 len = recvfrom(sd, buf, sizeof(buf), 0,
345 The address argument to `recvfrom` and `recvmsg` is populated with the remote
379 an expanded `struct sockaddr` to the `recvfrom()` and `sendto()` system calls.
396 If the `addrlen` specified to `sendto()` or `recvfrom()` is sufficient to
503 rc = recvfrom(sd, &msg, sizeof(msg), 0,
506 err(EXIT_FAILURE, "recvfrom");
549 rc = recvfrom(sd, &msg, sizeof(msg), 0,
552 err(EXIT_FAILURE, "recvfrom");
640 rc = recvfrom(sd, &buf, 2, 0, (struct sockaddr *)&rxaddr,
643 err(EXIT_FAILURE, "recvfrom");