logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

io_socketpair - create a pair of sockets

Description

       io_socketpair  creates  a  new  UNIX socket pair and writes both descriptors to d.  The socket pair works
       much like a pipe, but it is bidirectional (i.e. both descriptors are for reading and writing).

       io_socketpair returns 1 to indicate success. If something goes wrong, io_socketpair  returns  0,  setting
       errno  to  indicate the error; in this case it frees any memory that it allocated for the new socketpair,
       and it leaves d alone.

Name

       io_socketpair - create a pair of sockets

See Also

io_readfile(3), io_createfile(3), io_pipe(3)

                                                                                                io_socketpair(3)

Syntax

#include<libowfat/io.h>

       int io_socketpair(int64 pfd[2]);

See Also