mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
299 B
12 lines
299 B
#ifndef __MINGW32__ |
|
#define _GNU_SOURCE |
|
#include <sys/types.h> |
|
#include <sys/socket.h> |
|
#endif |
|
#include <string.h> |
|
#include "windoze.h" |
|
#include "socket.h" |
|
|
|
int socket_accept4_makenonblocking(int s,char *ip,uint16 *port) { |
|
return socket_accept4_flags(s,ip,port,SOCKET_NONBLOCK | SOCKET_CLOEXEC); |
|
}
|
|
|