Searched refs:file_descriptors (Results 1 – 1 of 1) sorted by relevance
103 fd_set file_descriptors; in handleConnection() local104 FD_ZERO(&file_descriptors); in handleConnection()105 FD_SET(client_sock, &file_descriptors); in handleConnection()106 FD_SET(server_sock, &file_descriptors); in handleConnection()108 int rv = select(MAX(client_sock, server_sock) + 1, &file_descriptors, nullptr, nullptr, in handleConnection()115 if (FD_ISSET(client_sock, &file_descriptors)) { in handleConnection()120 if (FD_ISSET(server_sock, &file_descriptors)) { in handleConnection()