Searched refs:client_sd (Results 1 – 1 of 1) sorted by relevance
| /minix3/minix/tests/ |
| H A D | common-socket.c | 689 int client_sd; in test_xfer_server() local 695 client_sd = 0; in test_xfer_server() 747 client_sd = accept(sd, (struct sockaddr *) &client_addr, in test_xfer_server() 750 if (client_sd == -1) { in test_xfer_server() 759 rc = read(client_sd, buf, sizeof(buf)); in test_xfer_server() 773 rc = write(client_sd, buf, sizeof(buf)); in test_xfer_server() 787 rc = recv(client_sd, buf, sizeof(buf), 0); in test_xfer_server() 801 rc = send(client_sd, buf, sizeof(buf), 0); in test_xfer_server() 815 rc = recvfrom(client_sd, buf, sizeof(buf), 0, NULL, 0); in test_xfer_server() 829 rc = sendto(client_sd, buf, sizeof(buf), 0, NULL, 0); in test_xfer_server() [all …]
|