diff options
author | Sönke Holz <sholz8530@gmail.com> | 2021-08-06 21:08:31 +0200 |
---|---|---|
committer | Sönke Holz <sholz8530@gmail.com> | 2021-08-06 21:08:31 +0200 |
commit | 652e5e3df0afabffe1ff0d61f475d847a1d7f6d6 (patch) | |
tree | 85b72a561614189aa7c192f3739d043e187acf1c /src | |
parent | 42d8e08f7847af3b8e8ceea14ad7193fdbdf53ef (diff) |
network: fix fcntl cmds
F_SETFL/F_GETFL are the correct commands to set a socket to be non-blocking
Diffstat (limited to 'src')
-rw-r--r-- | src/core/network/network.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/network/network.cpp b/src/core/network/network.cpp index 375bc79ec..5dc9cdc14 100644 --- a/src/core/network/network.cpp +++ b/src/core/network/network.cpp @@ -182,7 +182,7 @@ linger MakeLinger(bool enable, u32 linger_value) { } bool EnableNonBlock(int fd, bool enable) { - int flags = fcntl(fd, F_GETFD); + int flags = fcntl(fd, F_GETFL); if (flags == -1) { return false; } @@ -191,7 +191,7 @@ bool EnableNonBlock(int fd, bool enable) { } else { flags &= ~O_NONBLOCK; } - return fcntl(fd, F_SETFD, flags) == 0; + return fcntl(fd, F_SETFL, flags) == 0; } Errno TranslateNativeError(int e) { |