Skip to content
Snippets Groups Projects
Unverified Commit 2c3b4599 authored by Jake Drahos's avatar Jake Drahos
Browse files

Unbuffered backend conn

parent 6384c4dc
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,9 @@ struct backend_conn * ucart_backendConnect()
perror("fdopen");
goto fail_malloc_conn;
}
if (setbuf(conn->socket, NULL, _IONBF)) {
warn("setbuf");
}
/* success */
goto fail_final;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment