2001-02-02 17:54:47 +00:00
|
|
|
#include <sys/types.h>
|
2003-11-06 20:47:59 +00:00
|
|
|
#ifndef __MINGW32__
|
2006-05-18 06:02:43 +00:00
|
|
|
#include <unistd.h>
|
2001-02-02 17:54:47 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2003-11-06 20:47:59 +00:00
|
|
|
#endif
|
|
|
|
#include "windoze.h"
|
2001-02-02 17:54:47 +00:00
|
|
|
|
|
|
|
#include "socket.h"
|
2006-05-18 06:02:43 +00:00
|
|
|
#include "ndelay.h"
|
2001-02-02 17:54:47 +00:00
|
|
|
|
2015-10-16 17:12:22 +00:00
|
|
|
int socket_udp4b(void) {
|
2006-05-18 06:02:43 +00:00
|
|
|
int s;
|
2003-11-06 20:47:59 +00:00
|
|
|
__winsock_init();
|
2006-05-18 06:02:43 +00:00
|
|
|
s = winsock2errno(socket(PF_INET,SOCK_DGRAM,IPPROTO_UDP));
|
2015-10-16 17:12:22 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int socket_udp4(void) {
|
|
|
|
int s;
|
|
|
|
s=socket_udp4b();
|
|
|
|
if (s!=-1 && ndelay_on(s) == -1) { close(s); return -1; }
|
2006-05-18 06:02:43 +00:00
|
|
|
return s;
|
2001-02-02 17:54:47 +00:00
|
|
|
}
|