libowfat/socket/socket_udp4.c

20 lines
386 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#include <sys/types.h>
#ifndef __MINGW32__
#include <unistd.h>
2001-02-02 17:54:47 +00:00
#include <sys/socket.h>
#include <netinet/in.h>
#endif
#include "windoze.h"
2001-02-02 17:54:47 +00:00
#include "socket.h"
#include "ndelay.h"
2001-02-02 17:54:47 +00:00
int socket_udp4(void) {
int s;
__winsock_init();
s = winsock2errno(socket(PF_INET,SOCK_DGRAM,IPPROTO_UDP));
if (s == -1) return -1;
if (ndelay_on(s) == -1) { close(s); return -1; }
return s;
2001-02-02 17:54:47 +00:00
}