-
-
Notifications
You must be signed in to change notification settings - Fork 141
Closed
Description
I implemented a custom mutator, and it takes about 1~5 mins for one mutate cycle.
When I run wtf with the custom mutator, I get the following error:
Could not receive size (-1)
Receive failed
Lines 241 to 245 in 3ccad88
if (const int R = recv(Fd, (char *)CurrentBuffer, sizeof(uint32_t), 0); | |
R == -1 || R != sizeof(uint32_t)) { | |
fmt::print("Could not receive size ({})\n", R); | |
return std::nullopt; | |
} |
Is there any part of the code that sets the timeout or flag such as O_NONBLOCK
?
Actually, I already checked O_NONBLOCK
.
int is_block = !(fnctl(Fd, F_GETFL, 0) & O_NONBLOCK);
// Result: 1
0vercl0k
Metadata
Metadata
Assignees
Labels
No labels