Files
mars-libowfat/socket/socket_accept6_makenonblocking.c
2025-01-20 18:07:12 +00:00

12 lines
300 B
C

#ifndef __MINGW32__
#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/socket.h>
#endif
#include "windoze.h"
#include <libowfat/socket.h>
int socket_accept6_makenonblocking(int s,char ip[16],uint16 *port,uint32* scope_id) {
return socket_accept6_flags(s,ip,port,scope_id,SOCKET_NONBLOCK);
}