| 25 | static unsigned int use_addr; |
| 26 | |
| 27 | static int create_socket(void) |
| 28 | { |
| 29 | int fd; |
| 30 | |
| 31 | fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); |
| 32 | if (fd == -1) { |
| 33 | perror("socket()"); |
| 34 | return -1; |
| 35 | } |
| 36 | |
| 37 | return fd; |
| 38 | } |
| 39 | |
| 40 | static int submit_and_wait(struct io_uring *ring, int *res) |
| 41 | { |
no outgoing calls