aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIkalco <[email protected]>2024-06-21 17:41:23 -0500
committerGitHub <[email protected]>2024-06-22 00:41:23 +0200
commit4778afe2e6b4a6f8c7d218ccd8fe7e0bd4d2ee9c (patch)
tree73dfe22f376711f8fa596994aa130ca048dd0be1
parentfa022901cf2c9acdae9e9a24a68b9148d44f8627 (diff)
downloadHyprland-4778afe2e6b4a6f8c7d218ccd8fe7e0bd4d2ee9c.tar.gz
Hyprland-4778afe2e6b4a6f8c7d218ccd8fe7e0bd4d2ee9c.zip
hyprctl: make recv timeout bigger and give error message if it does timeout (#6621)
-rw-r--r--hyprctl/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
index f5de041b..2bd325e3 100644
--- a/hyprctl/main.cpp
+++ b/hyprctl/main.cpp
@@ -141,7 +141,7 @@ int rollingRead(const int socket) {
int request(std::string arg, int minArgs = 0, bool needRoll = false) {
const auto SERVERSOCKET = socket(AF_UNIX, SOCK_STREAM, 0);
- auto t = timeval{.tv_sec = 0, .tv_usec = 100000};
+ auto t = timeval{.tv_sec = 1, .tv_usec = 0};
setsockopt(SERVERSOCKET, SOL_SOCKET, SO_RCVTIMEO, &t, sizeof(struct timeval));
const auto ARGS = std::count(arg.begin(), arg.end(), ' ');
@@ -191,6 +191,8 @@ int request(std::string arg, int minArgs = 0, bool needRoll = false) {
sizeWritten = read(SERVERSOCKET, buffer, 8192);
if (sizeWritten < 0) {
+ if (errno == EWOULDBLOCK)
+ log("Hyprland IPC didn't respond in time\n");
log("Couldn't read (5)");
return 5;
}