1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 06:21:14 +02:00

Fix max fd calc and add test

This commit is contained in:
John Ericson 2020-08-20 05:08:50 +00:00
parent a83694c7a1
commit 3df78858f2
3 changed files with 18 additions and 1 deletions

View file

@ -291,7 +291,7 @@ static int _main(int argc, char * * argv)
int from = conn->from.fd;
int to = conn->to.fd;
auto nfds = std::max(from, to) + 1;
auto nfds = std::max(from, STDIN_FILENO) + 1;
while (true) {
fd_set fds;
FD_ZERO(&fds);