1 2 3 4 5 6 7 8 9 10 11 12
/* ISC license. */ #include <skalibs/nonposix.h> #include <sys/socket.h> #include <netinet/in.h> #include <skalibs/socket.h> int socket_tcp4_internal (unsigned int flags) { return socket_internal(AF_INET, SOCK_STREAM, 0, flags) ; }