MCPcopy Create free account
hub / github.com/axboe/liburing / send_data

Function send_data

test/socket-getsetsock-cmd.c:297–303  ·  view source on GitHub ↗

Send data through the sockets */

Source from the content-addressed store, hash-verified

295
296/* Send data through the sockets */
297static void send_data(struct fds *s)
298{
299 int written_bytes;
300 /* Send data sing the sockstruct->send */
301 written_bytes = write(s->tx, MSG, strlen(MSG));
302 assert(written_bytes == strlen(MSG));
303}
304
305int main(int argc, char *argv[])
306{

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected